| 123456789101112131415161718192021222324252627282930313233343536373839 |
- {
- "name": "@d8d/unified-file-module",
- "version": "1.0.0",
- "description": "统一文件管理模块(无租户隔离)",
- "type": "module",
- "main": "src/index.ts",
- "types": "src/index.ts",
- "exports": {
- ".": { "types": "./src/index.ts", "import": "./src/index.ts" },
- "./entities": { "types": "./src/entities/index.ts", "import": "./src/entities/index.ts" },
- "./services": { "types": "./src/services/index.ts", "import": "./src/services/index.ts" },
- "./schemas": { "types": "./src/schemas/index.ts", "import": "./src/schemas/index.ts" },
- "./routes": { "types": "./src/routes/index.ts", "import": "./src/routes/index.ts" }
- },
- "scripts": {
- "build": "tsc",
- "test": "vitest run",
- "test:unit": "vitest run tests/unit",
- "test:integration": "vitest run tests/integration",
- "typecheck": "tsc --noEmit"
- },
- "dependencies": {
- "@d8d/shared-crud": "workspace:*",
- "@d8d/shared-types": "workspace:*",
- "@d8d/shared-utils": "workspace:*",
- "@d8d/tenant-module-mt": "workspace:*",
- "@hono/zod-openapi": "^1.0.2",
- "hono": "^4.8.5",
- "minio": "^8.0.5",
- "typeorm": "^0.3.20",
- "uuid": "^11.1.0",
- "zod": "^4.1.12"
- },
- "devDependencies": {
- "@d8d/shared-test-util": "workspace:*",
- "typescript": "^5.8.3",
- "vitest": "^3.2.4"
- }
- }
|