package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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.2.0",
  27. "adm-zip": "^0.5.5",
  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.9",
  33. "fs-extra": "^10.0.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. "electron": "^13.1.4",
  43. "electron-builder": "^22.11.7",
  44. "eslint": "^7.29.0"
  45. },
  46. "repository": {
  47. "type": "git",
  48. "url": "git+https://github.com/dscalzi/HeliosLauncher.git"
  49. }
  50. }