package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 pages and is able to resolve redirects and follow interwiki links.",
  5. "main": "main.js",
  6. "scripts": {
  7. "build": "cp -n .env.example .env",
  8. "test": "node main.js debug",
  9. "start": "node main.js"
  10. },
  11. "author": "MarkusRost",
  12. "license": "ISC",
  13. "engines": {
  14. "node": ">=14.0.0"
  15. },
  16. "dependencies": {
  17. "cheerio": "^1.0.0-rc.3",
  18. "discord.js": "^12.2.0",
  19. "dotenv": "^8.2.0",
  20. "full-icu": "^1.3.1",
  21. "got": "^11.5.2",
  22. "htmlparser2": "^4.1.0",
  23. "npm": "^6.14.7",
  24. "sqlite3": "^5.0.0"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "https://github.com/Markus-Rost/discord-wiki-bot.git"
  29. },
  30. "keywords": [
  31. "mediawiki",
  32. "fandom",
  33. "gamepedia",
  34. "wikia",
  35. "discord",
  36. "wikibot",
  37. "voice-channel",
  38. "wiki",
  39. "discord-bot"
  40. ],
  41. "bugs": {
  42. "url": "https://github.com/Markus-Rost/discord-wiki-bot/issues"
  43. },
  44. "homepage": "https://github.com/Markus-Rost/discord-wiki-bot#readme"
  45. }