package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "helioslauncher",
  3. "version": "1.7.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": "out/index.js",
  14. "scripts": {
  15. "clean": "rimraf out",
  16. "tsc": "tsc",
  17. "build": "npm run clean && npm run tsc",
  18. "start": "electron .",
  19. "cilinux": "node build.js WINDOWS && node build.js LINUX",
  20. "cidarwin": "node build.js MAC",
  21. "dist": "cross-env ELECTRON_BUILDER_ALLOW_UNRESOLVED_DEPENDENCIES=true node build.js",
  22. "dist:win": "npm run dist -- WINDOWS",
  23. "dist:mac": "npm run dist -- MAC",
  24. "dist:linux": "npm run dist -- LINUX",
  25. "lint": "eslint --config .eslintrc.json ."
  26. },
  27. "engines": {
  28. "node": "12.x.x"
  29. },
  30. "dependencies": {
  31. "adm-zip": "^0.4.13",
  32. "async": "^3.1.1",
  33. "discord-rpc": "3.1.0",
  34. "ejs": "^3.0.1",
  35. "ejs-electron": "^2.0.3",
  36. "electron-updater": "^4.2.0",
  37. "fs-extra": "^8.1.0",
  38. "github-syntax-dark": "^0.5.0",
  39. "jquery": "^3.4.1",
  40. "request": "^2.88.0",
  41. "semver": "^7.1.1",
  42. "tar-fs": "^2.0.0",
  43. "winreg": "^1.2.4"
  44. },
  45. "devDependencies": {
  46. "@types/adm-zip": "^0.4.32",
  47. "@types/async": "^3.0.5",
  48. "@types/discord-rpc": "^3.0.2",
  49. "@types/fs-extra": "^8.0.1",
  50. "@types/jquery": "^3.3.31",
  51. "@types/node": "^12.12.25",
  52. "@types/request": "^2.48.4",
  53. "@types/tar-fs": "^1.16.2",
  54. "@types/winreg": "^1.2.30",
  55. "cross-env": "^7.0.0",
  56. "electron": "^7.1.10",
  57. "electron-builder": "^22.2.0",
  58. "eslint": "^6.8.0",
  59. "helios-distribution-types": "1.0.0-pre.1",
  60. "rimraf": "^3.0.0"
  61. },
  62. "repository": {
  63. "type": "git",
  64. "url": "git+https://github.com/dscalzi/HeliosLauncher.git"
  65. }
  66. }