71 lines
1.6 KiB
JSON
71 lines
1.6 KiB
JSON
{
|
||
"name": "@repo/storage",
|
||
"version": "2.1.0",
|
||
"description": "Storage implementation for Hono with integrated TUS protocol support - 完全兼容 Hono 的 Storage,集成 TUS 协议支持",
|
||
"main": "dist/index.js",
|
||
"types": "dist/index.d.ts",
|
||
"scripts": {
|
||
"build": "tsc",
|
||
"dev": "tsc --watch",
|
||
"clean": "rm -rf dist"
|
||
},
|
||
"dependencies": {
|
||
"@aws-sdk/client-s3": "^3.723.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": {
|
||
"@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",
|
||
"@redis/client": "^1.6.0"
|
||
},
|
||
"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"
|
||
}
|