fenghuo/packages/storage/package.json

66 lines
1.4 KiB
JSON

{
"name": "@repo/storage",
"version": "2.0.0",
"description": "Storage implementation for Hono - 完全兼容 Hono 的 Storage",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.723.0",
"@aws-sdk/s3-request-presigner": "^3.817.0",
"@hono/zod-validator": "^0.5.0",
"@repo/db": "workspace:*",
"@shopify/semaphore": "^3.1.0",
"debug": "^4.4.0",
"dotenv": "16.4.5",
"hono": "^4.7.10",
"ioredis": "5.4.1",
"jose": "^6.0.11",
"lodash.throttle": "^4.1.1",
"multistream": "^4.1.0",
"nanoid": "^5.1.5",
"transliteration": "^2.3.5",
"zod": "^3.25.23"
},
"devDependencies": {
"@redis/client": "^1.6.0",
"@types/debug": "^4.1.12",
"@types/lodash.throttle": "^4.1.9",
"@types/multistream": "^4.1.3",
"@types/node": "^22.15.21",
"typescript": "^5.0.0"
},
"peerDependencies": {
"@repo/db": "workspace:*",
"hono": "^4.0.0",
"ioredis": "^5.0.0"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"storage",
"hono",
"tus",
"upload",
"typescript"
],
"author": "Your Name",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/your-org/your-repo.git",
"directory": "packages/storage"
},
"bugs": {
"url": "https://github.com/your-org/your-repo/issues"
},
"homepage": "https://github.com/your-org/your-repo/tree/main/packages/storage#readme"
}