package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "gocqhttp-ipwiki-bot",
  3. "version": "0.0.1",
  4. "description": "GoCQHTTP IPWIKI Bot",
  5. "main": "./dist/main.js",
  6. "bin": {
  7. "cq-ipwiki-bot": "./dist/main.js"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git+https://github.com/CL-Jeremy/mirai-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. "preinstall": "npx force-resolutions",
  30. "build": "rm -rf dist && npx tsc --outDir d && mv d/src dist && rm -rf d",
  31. "lint": "npx eslint --fix --ext .ts ./"
  32. },
  33. "dependencies": {
  34. "callable-instance": "^2.0.0",
  35. "command-line-usage": "^5.0.5",
  36. "emoji-strip": "git+https://github.com/ivangil-dev/emoji-strip.git",
  37. "fetch-cookie": "^2.0.0",
  38. "html-entities": "^1.3.1",
  39. "koishi": "^3.10.0",
  40. "koishi-adapter-onebot": "^3.0.8",
  41. "log4js": "^6.3.0",
  42. "mediawiki2": "0.0.3",
  43. "playwright": "^1.18.1",
  44. "pngjs": "^5.0.0",
  45. "read-all-stream": "^3.1.0",
  46. "sha1": "^1.1.1",
  47. "tough-cookie": "^4.0.0",
  48. "twitter": "^1.7.1",
  49. "typescript": "^4.2.3"
  50. },
  51. "devDependencies": {
  52. "@types/command-line-usage": "^5.0.1",
  53. "@types/node": "^14.14.22",
  54. "@types/twitter": "^1.7.0",
  55. "@typescript-eslint/eslint-plugin": "^4.22.0",
  56. "@typescript-eslint/parser": "^4.22.0",
  57. "eslint": "^7.25.0",
  58. "eslint-plugin-import": "^2.22.1",
  59. "eslint-plugin-jsdoc": "^32.3.1",
  60. "eslint-plugin-prefer-arrow": "^1.2.3",
  61. "eslint-plugin-react": "^7.23.2",
  62. "npm-force-resolutions": "0.0.10",
  63. "tslint-config-prettier": "^1.13.0",
  64. "twitter-d": "^0.4.0"
  65. },
  66. "resolutions": {
  67. "fetch-cookie": "^2.0.0",
  68. "tough-cookie": "^4.0.0"
  69. }
  70. }