package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "helioslauncher",
  3. "version": "1.8.0",
  4. "productName": "Helios Launcher",
  5. "description": "Modded Minecraft Launcher",
  6. "author": "Daniel Scalzi (https://github.com/dscalzi/)",
  7. "license": "UNLICENSED",
  8. "homepage": "https://github.com/dscalzi/HeliosLauncher",
  9. "bugs": {
  10. "url": "https://github.com/dscalzi/HeliosLauncher/issues"
  11. },
  12. "private": true,
  13. "main": "index.js",
  14. "scripts": {
  15. "start": "electron .",
  16. "dist": "electron-builder build",
  17. "dist:win": "npm run dist -- -w",
  18. "dist:mac": "npm run dist -- -m",
  19. "dist:linux": "npm run dist -- -l",
  20. "lint": "eslint --config .eslintrc.json ."
  21. },
  22. "engines": {
  23. "node": "14.x.x"
  24. },
  25. "dependencies": {
  26. "@electron/remote": "^2.0.1",
  27. "adm-zip": "^0.5.9",
  28. "async": "^3.2.1",
  29. "discord-rpc": "^3.2.0",
  30. "ejs": "^3.1.6",
  31. "ejs-electron": "^2.1.1",
  32. "electron-updater": "^4.3.9",
  33. "fs-extra": "^10.0.0",
  34. "github-syntax-dark": "^0.5.0",
  35. "jquery": "^3.6.0",
  36. "node-stream-zip": "^1.15.0",
  37. "request": "^2.88.2",
  38. "semver": "^7.3.5",
  39. "tar-fs": "^2.1.1",
  40. "winreg": "^1.2.4"
  41. },
  42. "devDependencies": {
  43. "electron": "^13.5.2",
  44. "electron-builder": "^22.13.1",
  45. "eslint": "^8.0.1"
  46. },
  47. "repository": {
  48. "type": "git",
  49. "url": "git+https://github.com/dscalzi/HeliosLauncher.git"
  50. }
  51. }