package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "discord-wiki-bot",
  3. "version": "2.2.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 the 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": "^6.2.0",
  19. "full-icu": "^1.3.1",
  20. "got": "^10.7.0",
  21. "htmlparser2": "^3.10.1",
  22. "npm": "^6.14.5",
  23. "sqlite3": "^4.2.0"
  24. },
  25. "repository": {
  26. "type": "git",
  27. "url": "git+https://github.com/Markus-Rost/discord-wiki-bot.git"
  28. },
  29. "keywords": [
  30. "fandom",
  31. "gamepedia",
  32. "wikia",
  33. "discord",
  34. "wikibot",
  35. "voice-channel",
  36. "wiki",
  37. "discord-bot"
  38. ],
  39. "bugs": {
  40. "url": "https://github.com/Markus-Rost/discord-wiki-bot/issues"
  41. },
  42. "homepage": "https://github.com/Markus-Rost/discord-wiki-bot#readme"
  43. }