package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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": "12.x.x"
  26. },
  27. "dependencies": {
  28. "adm-zip": "^0.4.16",
  29. "async": "^3.2.0",
  30. "discord-rpc": "^3.1.4",
  31. "ejs": "^3.1.5",
  32. "ejs-electron": "^2.1.1",
  33. "electron-updater": "^4.3.4",
  34. "fs-extra": "^9.0.1",
  35. "github-syntax-dark": "^0.5.0",
  36. "jquery": "^3.5.1",
  37. "request": "^2.88.2",
  38. "semver": "^7.3.2",
  39. "tar-fs": "^2.1.0",
  40. "winreg": "^1.2.4"
  41. },
  42. "devDependencies": {
  43. "cross-env": "^7.0.2",
  44. "electron": "^10.1.2",
  45. "electron-builder": "^22.8.0",
  46. "eslint": "^7.9.0"
  47. },
  48. "repository": {
  49. "type": "git",
  50. "url": "git+https://github.com/dscalzi/HeliosLauncher.git"
  51. }
  52. }