fenghuo/packages/storage/package.json

72 lines
1.6 KiB
JSON
Raw Normal View History

2025-05-28 20:00:36 +08:00
{
"name": "@repo/storage",
2025-05-29 08:56:57 +08:00
"version": "2.1.0",
"description": "Storage implementation for Hono with integrated TUS protocol support - 完全兼容 Hono 的 Storage集成 TUS 协议支持",
2025-05-28 20:00:36 +08:00
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist"
},
"dependencies": {
2025-05-29 08:56:57 +08:00
"@aws-sdk/client-s3": "^3.723.0",
2025-05-29 11:12:16 +08:00
"@aws-sdk/s3-request-presigner": "^3.817.0",
2025-05-28 20:00:36 +08:00
"@hono/zod-validator": "^0.5.0",
"@repo/db": "workspace:*",
2025-05-29 08:56:57 +08:00
"@shopify/semaphore": "^3.1.0",
"debug": "^4.4.0",
2025-05-28 22:16:02 +08:00
"dotenv": "16.4.5",
2025-05-28 20:00:36 +08:00
"hono": "^4.7.10",
"ioredis": "5.4.1",
"jose": "^6.0.11",
2025-05-29 08:56:57 +08:00
"lodash.throttle": "^4.1.1",
"multistream": "^4.1.0",
2025-05-28 20:00:36 +08:00
"nanoid": "^5.1.5",
"transliteration": "^2.3.5",
"zod": "^3.25.23"
},
"devDependencies": {
2025-05-29 11:12:16 +08:00
"@redis/client": "^1.6.0",
2025-05-29 08:56:57 +08:00
"@types/debug": "^4.1.12",
"@types/lodash.throttle": "^4.1.9",
"@types/multistream": "^4.1.3",
2025-05-28 20:00:36 +08:00
"@types/node": "^22.15.21",
2025-05-29 11:12:16 +08:00
"typescript": "^5.0.0"
2025-05-28 20:00:36 +08:00
},
"peerDependencies": {
"@repo/db": "workspace:*",
"hono": "^4.0.0",
"ioredis": "^5.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"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"
}