package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "discord-wiki-bot",
  3. "version": "2.3.0",
  4. "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.",
  5. "main": "main.js",
  6. "scripts": {
  7. "test": "node main.js debug",
  8. "start": "node main.js"
  9. },
  10. "author": "MarkusRost",
  11. "license": "ISC",
  12. "engines": {
  13. "node": ">=14.0.0"
  14. },
  15. "dependencies": {
  16. "cheerio": "^1.0.0-rc.3",
  17. "discord.js": "^12.2.0",
  18. "dotenv": "^8.2.0",
  19. "full-icu": "^1.3.1",
  20. "got": "^10.7.0",
  21. "htmlparser2": "^3.10.1",
  22. "npm": "^6.14.7",
  23. "sqlite3": "^4.2.0"
  24. },
  25. "repository": {
  26. "type": "git",
  27. "url": "https://github.com/Markus-Rost/discord-wiki-bot.git"
  28. },
  29. "keywords": [
  30. "mediawiki",
  31. "fandom",
  32. "gamepedia",
  33. "wikia",
  34. "discord",
  35. "wikibot",
  36. "voice-channel",
  37. "wiki",
  38. "discord-bot"
  39. ],
  40. "bugs": {
  41. "url": "https://github.com/Markus-Rost/discord-wiki-bot/issues"
  42. },
  43. "homepage": "https://github.com/Markus-Rost/discord-wiki-bot#readme"
  44. }