package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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": "./dist/main.js",
  14. "scripts": {
  15. "clean": "rimraf dist",
  16. "tsc": "tsc",
  17. "start": "electron .",
  18. "cilinux": "node build.js WINDOWS && node build.js LINUX",
  19. "cidarwin": "node build.js MAC",
  20. "dist:win": "npm run dist -- WINDOWS",
  21. "dist:mac": "npm run dist -- MAC",
  22. "dist:linux": "npm run dist -- LINUX",
  23. "lint": "eslint --ext=jsx,js,tsx,ts src",
  24. "dev": "electron-webpack dev",
  25. "compile": "electron-webpack"
  26. },
  27. "engines": {
  28. "node": "12.x.x"
  29. },
  30. "dependencies": {
  31. "adm-zip": "^0.4.14",
  32. "async": "^3.2.0",
  33. "discord-rpc": "3.1.0",
  34. "electron-updater": "^4.2.4",
  35. "fs-extra": "^9.0.0",
  36. "github-syntax-dark": "^0.5.0",
  37. "jquery": "^3.4.1",
  38. "request": "^2.88.2",
  39. "semver": "^7.1.3",
  40. "tar-fs": "^2.0.0",
  41. "winreg": "^1.2.4"
  42. },
  43. "devDependencies": {
  44. "@babel/preset-react": "^7.9.4",
  45. "@types/adm-zip": "^0.4.32",
  46. "@types/async": "^3.0.8",
  47. "@types/discord-rpc": "^3.0.2",
  48. "@types/fs-extra": "^8.1.0",
  49. "@types/jquery": "^3.3.33",
  50. "@types/node": "^12.12.29",
  51. "@types/react": "^16.9.23",
  52. "@types/react-dom": "^16.9.5",
  53. "@types/request": "^2.48.4",
  54. "@types/tar-fs": "^1.16.2",
  55. "@types/winreg": "^1.2.30",
  56. "cross-env": "^7.0.2",
  57. "electron": "^8.2.1",
  58. "electron-builder": "^22.4.0",
  59. "electron-webpack": "^2.8.2",
  60. "electron-webpack-ts": "^4.0.1",
  61. "eslint": "^6.8.0",
  62. "helios-distribution-types": "1.0.0-pre.1",
  63. "react": "^16.13.0",
  64. "react-dom": "^16.13.0",
  65. "react-hot-loader": "^4.12.19",
  66. "rimraf": "^3.0.2",
  67. "typescript": "^3.8.3",
  68. "webpack": "^4.42.0"
  69. },
  70. "repository": {
  71. "type": "git",
  72. "url": "git+https://github.com/dscalzi/HeliosLauncher.git"
  73. }
  74. }