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": "^1.0.4",
  27. "adm-zip": "^0.5.4",
  28. "async": "^3.2.0",
  29. "discord-rpc": "^3.2.0",
  30. "ejs": "^3.1.6",
  31. "ejs-electron": "^2.1.1",
  32. "electron-updater": "^4.3.8",
  33. "fs-extra": "^9.1.0",
  34. "github-syntax-dark": "^0.5.0",
  35. "jquery": "^3.6.0",
  36. "request": "^2.88.2",
  37. "semver": "^7.3.5",
  38. "tar-fs": "^2.1.1",
  39. "winreg": "^1.2.4"
  40. },
  41. "devDependencies": {
  42. "cross-env": "^7.0.3",
  43. "electron": "^12.0.1",
  44. "electron-builder": "^22.10.5",
  45. "eslint": "^7.22.0"
  46. },
  47. "repository": {
  48. "type": "git",
  49. "url": "git+https://github.com/dscalzi/HeliosLauncher.git"
  50. }
  51. }