package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "gocqhttp-twitter-bot",
  3. "version": "0.9.0",
  4. "description": "GoCQHTTP Twitter Bot",
  5. "main": "./dist/main.js",
  6. "bin": {
  7. "twitter-bot": "./dist/main.js"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://mikeslab.dix.asia/gogs/Pirami/gocqhttp-twitter-bot.git"
  12. },
  13. "publishConfig": {
  14. "registry": "https://npm.pkg.github.com/"
  15. },
  16. "keywords": [
  17. "qq",
  18. "qqbot",
  19. "mirai",
  20. "twitter"
  21. ],
  22. "author": "CL-Jeremy",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/CL-Jeremy/mirai-twitter-bot/issues"
  26. },
  27. "homepage": "https://github.com/CL-Jeremy/mirai-twitter-bot",
  28. "scripts": {
  29. "build": "rm -rf dist && npx tsc --outDir d && mv d/src dist && rm -rf d",
  30. "lint": "npx eslint --fix --ext .ts ./"
  31. },
  32. "dependencies": {
  33. "@koishijs/core": "^4.11.1",
  34. "@koishijs/plugin-adapter-onebot": "^5.5.3",
  35. "@minatojs/core": "^2.0.3",
  36. "axios": "^1.2.2",
  37. "callable-instance": "^2.0.0",
  38. "command-line-usage": "^5.0.5",
  39. "html-entities": "^1.3.1",
  40. "koishi": "^4.11.1",
  41. "log4js": "^6.3.0",
  42. "playwright": "^1.9.1",
  43. "pngjs": "^5.0.0",
  44. "read-all-stream": "^3.1.0",
  45. "redis": "^3.1.2",
  46. "sha1": "^1.1.1",
  47. "sharp": "^0.28.3",
  48. "temp": "^0.9.1",
  49. "twitter-api-v2": "^1.12.8",
  50. "typescript": "^4.5.5"
  51. },
  52. "devDependencies": {
  53. "@types/command-line-usage": "^5.0.1",
  54. "@types/node": "^14.14.22",
  55. "@types/pngjs": "^3.4.2",
  56. "@types/puppeteer": "^1.5.0",
  57. "@types/redis": "^2.8.6",
  58. "@types/sharp": "^0.25.0",
  59. "@types/temp": "^0.8.34",
  60. "@typescript-eslint/eslint-plugin": "^4.22.0",
  61. "@typescript-eslint/parser": "^4.22.0",
  62. "eslint": "^7.25.0",
  63. "eslint-plugin-import": "^2.22.1",
  64. "eslint-plugin-jsdoc": "^32.3.1",
  65. "eslint-plugin-prefer-arrow": "^1.2.3",
  66. "eslint-plugin-react": "^7.23.2",
  67. "tslint-config-prettier": "^1.13.0"
  68. }
  69. }