package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "discord-wiki-bot",
  3. "version": "4.3.0",
  4. "type": "module",
  5. "description": "Wiki-Bot is a bot with the purpose to easily search for and link to wiki pages. Wiki-Bot shows short descriptions and additional info about pages and is able to resolve redirects and follow interwiki links.",
  6. "main": "main.js",
  7. "scripts": {
  8. "build": "cp -n .env.example .env",
  9. "readonly": "node main.js readonly",
  10. "test": "node main.js debug",
  11. "start": "node main.js"
  12. },
  13. "author": "MarkusRost",
  14. "license": "ISC",
  15. "engines": {
  16. "node": ">=16.6.0"
  17. },
  18. "dependencies": {
  19. "cheerio": "^1.0.0-rc.10",
  20. "datetime-difference": "^1.0.2",
  21. "discord-oauth2": "^2.10.0",
  22. "discord.js": "^13.6.0",
  23. "dotenv": "^16.0.0",
  24. "full-icu": "^1.4.0",
  25. "got": "^12.0.3",
  26. "htmlparser2": "^7.2.0",
  27. "npm": "^8.7.0",
  28. "pg": "^8.7.3"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "https://github.com/Markus-Rost/discord-wiki-bot.git"
  33. },
  34. "keywords": [
  35. "mediawiki",
  36. "fandom",
  37. "gamepedia",
  38. "wikia",
  39. "discord",
  40. "wikibot",
  41. "voice-channel",
  42. "wiki",
  43. "discord-bot",
  44. "wikipedia"
  45. ],
  46. "bugs": {
  47. "url": "https://github.com/Markus-Rost/discord-wiki-bot/issues"
  48. },
  49. "homepage": "https://github.com/Markus-Rost/discord-wiki-bot#readme"
  50. }