You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
891B

  1. {
  2. "name": "papoh",
  3. "version": "1.0.0",
  4. "description": "Pen and Paper Online Discord Manager",
  5. "main": "./lib/index.js",
  6. "bin": {
  7. "papoh": "./lib/index.js"
  8. },
  9. "scripts": {
  10. "create": "npm run build && npm run test",
  11. "start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
  12. "build": "tsc -p .",
  13. "test": "sudo npm i -g && papoh",
  14. "refresh": "rm -rf ./node_modules ./package-lock.json && npm install"
  15. },
  16. "keywords": [
  17. "node",
  18. "pnp",
  19. "discord"
  20. ],
  21. "author": "cziermann <cziermann@mailbox.org>",
  22. "license": "ISC",
  23. "dependencies": {
  24. "chalk": "^4.0.0",
  25. "clear": "^0.1.0",
  26. "commander": "^5.1.0",
  27. "discord.js": "^12.2.0",
  28. "figlet": "^1.4.0",
  29. "path": "^0.12.7"
  30. },
  31. "devDependencies": {
  32. "@types/node": "^14.0.5",
  33. "nodemon": "^2.0.4",
  34. "ts-node": "^8.10.1",
  35. "typescript": "^3.9.3"
  36. }
  37. }