package.json 1.4 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. "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": "16.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. "helios-core": "^0.1.0-alpha.3",
  36. "jquery": "^3.6.0",
  37. "node-stream-zip": "^1.15.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. "electron": "^15.2.0",
  45. "electron-builder": "^22.13.1",
  46. "eslint": "^8.0.1"
  47. },
  48. "repository": {
  49. "type": "git",
  50. "url": "git+https://github.com/dscalzi/HeliosLauncher.git"
  51. }
  52. }