package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "audio-book-server",
  3. "version": "1.0.0",
  4. "description": "AI有声书生成工具后端服务",
  5. "main": "dist/app.js",
  6. "scripts": {
  7. "dev": "tsx watch src/app.ts",
  8. "build": "tsc",
  9. "start": "node dist/app.js"
  10. },
  11. "dependencies": {
  12. "@koa/bodyparser": "^6.1.0",
  13. "@koa/cors": "^5.0.0",
  14. "@koa/router": "^12.0.1",
  15. "axios": "^1.7.2",
  16. "crypto-js": "^4.2.0",
  17. "dotenv": "^16.4.5",
  18. "fluent-ffmpeg": "^2.1.2",
  19. "is-generator-function": "^1.1.2",
  20. "jsonwebtoken": "^9.0.2",
  21. "koa": "^3.1.2",
  22. "koa-mount": "^4.2.0",
  23. "koa-static": "^5.0.0",
  24. "mongoose": "^8.4.1",
  25. "uuid": "^9.0.1"
  26. },
  27. "devDependencies": {
  28. "@types/crypto-js": "^4.2.2",
  29. "@types/fluent-ffmpeg": "^2.1.24",
  30. "@types/jsonwebtoken": "^9.0.6",
  31. "@types/koa": "^2.15.0",
  32. "@types/koa__cors": "^5.0.0",
  33. "@types/koa__router": "^12.0.4",
  34. "@types/node": "^20.14.2",
  35. "@types/uuid": "^9.0.8",
  36. "ts-node": "^10.9.2",
  37. "tsx": "^4.11.2",
  38. "typescript": "^5.4.5"
  39. }
  40. }