package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "gocqhttp-twitter-bot",
  3. "version": "0.5.3",
  4. "description": "GoCQHTTP Twitter Bot",
  5. "main": "./dist/main.js",
  6. "bin": {
  7. "twitter-bot": "./dist/main.js",
  8. "twitter-bot-webshot-server": "./bin/playwright-server"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://mikeslab.dix.asia/gogs/Pirami/gocqhttp-twitter-bot.git"
  13. },
  14. "keywords": [
  15. "qq",
  16. "qqbot",
  17. "mirai",
  18. "onebot",
  19. "twitter"
  20. ],
  21. "author": "CL-Jeremy",
  22. "license": "MIT",
  23. "bugs": {
  24. "url": "https://github.com/CL-Jeremy/mirai-twitter-bot/issues"
  25. },
  26. "homepage": "https://github.com/CL-Jeremy/mirai-twitter-bot",
  27. "scripts": {
  28. "build": "rm -rf dist && npx tsc --outDir d && rm d/src/*_test.d.ts && mv d/src dist && rm -rf d",
  29. "lint": "npx eslint --fix --ext .ts ./"
  30. },
  31. "dependencies": {
  32. "callable-instance": "^2.0.0",
  33. "command-line-usage": "^5.0.5",
  34. "html-entities": "^1.3.1",
  35. "koishi": "^3.11.0",
  36. "koishi-adapter-onebot": "^3.0.9",
  37. "log4js": "^6.3.0",
  38. "playwright": "^1.11.0",
  39. "pngjs": "^6.0.0",
  40. "read-all-stream": "^3.1.0",
  41. "redis": "^3.1.2",
  42. "sha1": "^1.1.1",
  43. "sharp": "^0.26.3",
  44. "temp": "^0.9.4",
  45. "twitter": "^1.7.1",
  46. "typescript": "^4.2.4"
  47. },
  48. "devDependencies": {
  49. "@types/command-line-usage": "^5.0.1",
  50. "@types/node": "^14.14.22",
  51. "@types/pngjs": "^6.0.0",
  52. "@types/redis": "^2.8.6",
  53. "@types/sharp": "^0.26.1",
  54. "@types/temp": "^0.9.0",
  55. "@types/twitter": "^1.7.0",
  56. "@typescript-eslint/eslint-plugin": "^4.23.0",
  57. "@typescript-eslint/parser": "^4.23.0",
  58. "eslint": "^7.26.0",
  59. "eslint-plugin-import": "^2.23.2",
  60. "eslint-plugin-jsdoc": "^34.6.1",
  61. "eslint-plugin-prefer-arrow": "^1.2.3",
  62. "eslint-plugin-react": "^7.23.2",
  63. "twitter-d": "^0.4.0"
  64. }
  65. }