package.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. {
  2. "name": "helioslauncher",
  3. "version": "2.0.0-alpha.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. "test": "cross-env TS_NODE_PROJECT='./tsconfig.test.json' NODE_ENV=test mocha -r ts-node/register -r tsconfig-paths/register test/**/*.ts"
  27. },
  28. "engines": {
  29. "node": "12.x.x"
  30. },
  31. "dependencies": {
  32. "adm-zip": "^0.4.16",
  33. "async": "^3.2.0",
  34. "discord-rpc": "^3.1.3",
  35. "electron-updater": "^4.3.4",
  36. "fs-extra": "^9.0.1",
  37. "github-syntax-dark": "^0.5.0",
  38. "got": "^11.5.2",
  39. "jquery": "^3.5.1",
  40. "lodash": "^4.17.20",
  41. "moment": "^2.27.0",
  42. "request": "^2.88.2",
  43. "semver": "^7.3.2",
  44. "tar-fs": "^2.1.0",
  45. "triple-beam": "^1.3.0",
  46. "winreg": "^1.2.4",
  47. "winston": "^3.3.3"
  48. },
  49. "devDependencies": {
  50. "@babel/preset-react": "^7.10.4",
  51. "@types/adm-zip": "^0.4.33",
  52. "@types/async": "^3.2.3",
  53. "@types/chai": "^4.2.12",
  54. "@types/chai-as-promised": "^7.1.3",
  55. "@types/discord-rpc": "^3.0.4",
  56. "@types/electron-devtools-installer": "^2.2.0",
  57. "@types/fs-extra": "^9.0.1",
  58. "@types/jquery": "^3.5.1",
  59. "@types/lodash": "^4.14.160",
  60. "@types/mocha": "^8.0.3",
  61. "@types/node": "^12.12.54",
  62. "@types/react": "^16.9.48",
  63. "@types/react-dom": "^16.9.8",
  64. "@types/react-redux": "^7.1.9",
  65. "@types/react-transition-group": "^4.4.0",
  66. "@types/request": "^2.48.5",
  67. "@types/tar-fs": "^2.0.0",
  68. "@types/triple-beam": "^1.3.2",
  69. "@types/winreg": "^1.2.30",
  70. "@typescript-eslint/eslint-plugin": "^3.10.1",
  71. "@typescript-eslint/parser": "^3.10.1",
  72. "chai": "^4.2.0",
  73. "chai-as-promised": "^7.1.1",
  74. "cross-env": "^7.0.2",
  75. "electron": "^9.2.1",
  76. "electron-builder": "^22.8.0",
  77. "electron-devtools-installer": "^3.1.1",
  78. "electron-webpack": "^2.8.2",
  79. "electron-webpack-ts": "^4.0.1",
  80. "eslint": "^7.7.0",
  81. "eslint-plugin-react": "^7.20.6",
  82. "helios-distribution-types": "1.0.0-pre.1",
  83. "mocha": "^8.1.3",
  84. "nock": "^13.0.4",
  85. "react": "^16.13.0",
  86. "react-dom": "^16.13.0",
  87. "react-hot-loader": "^4.12.21",
  88. "react-redux": "^7.2.1",
  89. "react-transition-group": "^4.4.1",
  90. "redux": "^4.0.5",
  91. "rimraf": "^3.0.2",
  92. "ts-node": "^8.10.2",
  93. "tsconfig-paths": "^3.9.0",
  94. "typescript": "^3.9.7",
  95. "webpack": "^4.44.1"
  96. },
  97. "repository": {
  98. "type": "git",
  99. "url": "git+https://github.com/dscalzi/HeliosLauncher.git"
  100. }
  101. }