package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. "art-template": "^4.13.2",
  18. "axios": "^1.7.8",
  19. "jimp": "^1.6.0",
  20. "js-yaml": "^4.1.0",
  21. "minimist": "^1.2.8",
  22. "node-cron": "^3.0.3",
  23. "node-napcat-ts": "^0.4.0",
  24. "puppeteer": "^23.9.0",
  25. "rcon-client": "^4.2.5",
  26. "reflect-metadata": "^0.2.2",
  27. "tesseract.js": "^6.0.1",
  28. "winston": "^3.17.0",
  29. "winston-daily-rotate-file": "^5.0.0",
  30. "yaml": "^2.6.1"
  31. },
  32. "devDependencies": {
  33. "@types/js-yaml": "^4.0.9",
  34. "@types/minimist": "^1.2.5",
  35. "@types/node": "^16.18.126",
  36. "@types/node-cron": "^3.0.11",
  37. "@types/winston": "^2.4.4",
  38. "nodemon": "^3.1.9",
  39. "ts-node": "^10.9.2",
  40. "tsconfig-paths": "^4.2.0",
  41. "typescript": "^4.9.5"
  42. }
  43. }