package.json 1.8 KB

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