| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "name": "audio-book-server",
- "version": "1.0.0",
- "description": "AI有声书生成工具后端服务",
- "main": "dist/app.js",
- "scripts": {
- "dev": "tsx watch src/app.ts",
- "build": "tsc",
- "start": "node dist/app.js"
- },
- "dependencies": {
- "@koa/bodyparser": "^6.1.0",
- "@koa/cors": "^5.0.0",
- "@koa/router": "^12.0.1",
- "axios": "^1.7.2",
- "crypto-js": "^4.2.0",
- "dotenv": "^16.4.5",
- "fluent-ffmpeg": "^2.1.2",
- "is-generator-function": "^1.1.2",
- "jsonwebtoken": "^9.0.2",
- "koa": "^3.1.2",
- "koa-mount": "^4.2.0",
- "koa-static": "^5.0.0",
- "mongoose": "^8.4.1",
- "uuid": "^9.0.1"
- },
- "devDependencies": {
- "@types/crypto-js": "^4.2.2",
- "@types/fluent-ffmpeg": "^2.1.24",
- "@types/jsonwebtoken": "^9.0.6",
- "@types/koa": "^2.15.0",
- "@types/koa__cors": "^5.0.0",
- "@types/koa__router": "^12.0.4",
- "@types/node": "^20.14.2",
- "@types/uuid": "^9.0.8",
- "ts-node": "^10.9.2",
- "tsx": "^4.11.2",
- "typescript": "^5.4.5"
- }
- }
|