package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. "cilinux": "node build.js WINDOWS && node build.js LINUX",
  17. "cidarwin": "node build.js MAC",
  18. "dist": "cross-env ELECTRON_BUILDER_ALLOW_UNRESOLVED_DEPENDENCIES=true node build.js",
  19. "dist:win": "npm run dist -- WINDOWS",
  20. "dist:mac": "npm run dist -- MAC",
  21. "dist:linux": "npm run dist -- LINUX",
  22. "lint": "eslint --config .eslintrc.json ."
  23. },
  24. "engines": {
  25. "node": "14.x.x"
  26. },
  27. "dependencies": {
  28. "@electron/remote": "^1.0.4",
  29. "adm-zip": "^0.5.4",
  30. "async": "^3.2.0",
  31. "discord-rpc": "^3.2.0",
  32. "ejs": "^3.1.6",
  33. "ejs-electron": "^2.1.1",
  34. "electron-updater": "^4.3.8",
  35. "fs-extra": "^9.1.0",
  36. "github-syntax-dark": "^0.5.0",
  37. "jquery": "^3.6.0",
  38. "request": "^2.88.2",
  39. "semver": "^7.3.5",
  40. "tar-fs": "^2.1.1",
  41. "winreg": "^1.2.4"
  42. },
  43. "devDependencies": {
  44. "cross-env": "^7.0.3",
  45. "electron": "^12.0.1",
  46. "electron-builder": "^22.10.5",
  47. "eslint": "^7.22.0"
  48. },
  49. "repository": {
  50. "type": "git",
  51. "url": "git+https://github.com/dscalzi/HeliosLauncher.git"
  52. }
  53. }