package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "botqq",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "type": "module",
  7. "scripts": {
  8. "build": "cp -R ./src/config/ ./dist/ && cp -R ./src/resources/ ./dist/ && tsc",
  9. "dev": "nodemon --watch src --ext ts,yml --exec \"node --no-warnings --loader=ts-node/esm --import=ts-node/esm src/app.ts\"",
  10. "start": "npm run build && node dist/app.js"
  11. },
  12. "keywords": [],
  13. "author": "",
  14. "license": "ISC",
  15. "dependencies": {
  16. "@renmu/bili-api": "^2.7.0",
  17. "@types/sharp": "^0.32.0",
  18. "art-template": "^4.13.2",
  19. "axios": "^1.7.8",
  20. "fluent-ffmpeg": "^2.1.3",
  21. "jimp": "^1.6.0",
  22. "js-yaml": "^4.1.0",
  23. "minimist": "^1.2.8",
  24. "node-cron": "^3.0.3",
  25. "node-napcat-ts": "^0.4.0",
  26. "puppeteer": "^23.9.0",
  27. "puppeteer-screen-recorder": "^3.0.6",
  28. "rcon-client": "^4.2.5",
  29. "reflect-metadata": "^0.2.2",
  30. "sharp": "^0.34.3",
  31. "tesseract.js": "^6.0.1",
  32. "winston": "^3.17.0",
  33. "winston-daily-rotate-file": "^5.0.0",
  34. "yaml": "^2.6.1"
  35. },
  36. "devDependencies": {
  37. "@types/js-yaml": "^4.0.9",
  38. "@types/minimist": "^1.2.5",
  39. "@types/node": "^16.18.126",
  40. "@types/node-cron": "^3.0.11",
  41. "@types/winston": "^2.4.4",
  42. "nodemon": "^3.1.9",
  43. "ts-node": "^10.9.2",
  44. "tsconfig-paths": "^4.2.0",
  45. "typescript": "^4.9.5"
  46. }
  47. }