package.json 1.1 KB

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