package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "discord-wiki-bot",
  3. "version": "4.1.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. "readonly": "node main.js readonly",
  9. "test": "node main.js debug",
  10. "start": "node main.js"
  11. },
  12. "author": "MarkusRost",
  13. "license": "ISC",
  14. "engines": {
  15. "node": ">=14.0.0"
  16. },
  17. "dependencies": {
  18. "cheerio": "^1.0.0-rc.10",
  19. "datetime-difference": "^1.0.2",
  20. "discord-oauth2": "^2.6.0",
  21. "discord.js": "^12.5.3",
  22. "dotenv": "^10.0.0",
  23. "full-icu": "^1.3.4",
  24. "got": "^11.8.2",
  25. "htmlparser2": "^6.1.0",
  26. "npm": "^7.17.0",
  27. "pg": "^8.6.0"
  28. },
  29. "repository": {
  30. "type": "git",
  31. "url": "https://github.com/Markus-Rost/discord-wiki-bot.git"
  32. },
  33. "keywords": [
  34. "mediawiki",
  35. "fandom",
  36. "gamepedia",
  37. "wikia",
  38. "discord",
  39. "wikibot",
  40. "voice-channel",
  41. "wiki",
  42. "discord-bot",
  43. "wikipedia"
  44. ],
  45. "bugs": {
  46. "url": "https://github.com/Markus-Rost/discord-wiki-bot/issues"
  47. },
  48. "homepage": "https://github.com/Markus-Rost/discord-wiki-bot#readme"
  49. }