package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "@djs-button-pages/djs-button-pages",
  3. "description": "A simple yet powerful module for implementing customizable embed pages with buttons in Discord chat. Works only with Discord.js.",
  4. "version": "0.0.0",
  5. "private": true,
  6. "dependencies":
  7. {
  8. "discord.js": "13.x"
  9. },
  10. "scripts":
  11. {
  12. "lint": "eslint packages/**/*.ts",
  13. "build": "npm run build --workspaces",
  14. "test": "npm run test --workspaces"
  15. },
  16. "devDependencies":
  17. {
  18. "@typescript-eslint/eslint-plugin": "^5.29.0",
  19. "@typescript-eslint/parser": "^5.29.0",
  20. "eslint": "^8.18.0",
  21. "typescript": "^4.7.4",
  22. "jest": "^29.3.1",
  23. "ts-jest": "^29.0.3",
  24. "@types/jest": "^29.2.4"
  25. },
  26. "license": "Apache-2.0",
  27. "author":
  28. {
  29. "name": "moony",
  30. "url": "https://www.notabug.org/m00ny",
  31. "discord": "moony#6815"
  32. },
  33. "engines":
  34. {
  35. "node": ">=16.9.0"
  36. },
  37. "workspaces":
  38. [
  39. "packages/*"
  40. ]
  41. }