package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "gocqhttp-twitter-searchbot",
  3. "version": "0.0.1",
  4. "description": "GoCQHTTP Twitter Search Bot",
  5. "main": "./dist/main.js",
  6. "bin": {
  7. "twitter-searchbot": "./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. "command-line-usage": "^5.0.5",
  31. "koishi": "^3.10.0",
  32. "koishi-adapter-onebot": "^3.0.8",
  33. "log4js": "^6.3.0",
  34. "twitter": "^1.7.1",
  35. "typescript": "^4.5.5"
  36. },
  37. "devDependencies": {
  38. "@types/command-line-usage": "^5.0.1",
  39. "@types/node": "^14.14.22",
  40. "@types/twitter": "^1.7.0",
  41. "@typescript-eslint/eslint-plugin": "^4.22.0",
  42. "@typescript-eslint/parser": "^4.22.0",
  43. "eslint": "^7.25.0",
  44. "eslint-plugin-import": "^2.22.1",
  45. "eslint-plugin-jsdoc": "^32.3.1",
  46. "eslint-plugin-prefer-arrow": "^1.2.3",
  47. "eslint-plugin-react": "^7.23.2",
  48. "tslint-config-prettier": "^1.13.0",
  49. "twitter-d": "^0.4.0"
  50. }
  51. }