package.json 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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' mocha -r ts-node/register test/**/*.ts"
  27. },
  28. "engines": {
  29. "node": "12.x.x"
  30. },
  31. "dependencies": {
  32. "adm-zip": "^0.4.14",
  33. "async": "^3.2.0",
  34. "discord-rpc": "^3.1.1",
  35. "electron-updater": "^4.3.1",
  36. "fs-extra": "^9.0.0",
  37. "github-syntax-dark": "^0.5.0",
  38. "got": "^11.1.4",
  39. "jquery": "^3.5.1",
  40. "moment": "^2.26.0",
  41. "request": "^2.88.2",
  42. "semver": "^7.3.2",
  43. "tar-fs": "^2.1.0",
  44. "triple-beam": "^1.3.0",
  45. "winreg": "^1.2.4",
  46. "winston": "^3.2.1"
  47. },
  48. "devDependencies": {
  49. "@babel/preset-react": "^7.9.4",
  50. "@types/adm-zip": "^0.4.33",
  51. "@types/async": "^3.2.3",
  52. "@types/chai": "^4.2.11",
  53. "@types/discord-rpc": "^3.0.4",
  54. "@types/fs-extra": "^9.0.1",
  55. "@types/jquery": "^3.3.38",
  56. "@types/mocha": "^7.0.2",
  57. "@types/node": "^12.12.42",
  58. "@types/react": "^16.9.35",
  59. "@types/react-dom": "^16.9.8",
  60. "@types/react-redux": "^7.1.9",
  61. "@types/request": "^2.48.5",
  62. "@types/tar-fs": "^2.0.0",
  63. "@types/triple-beam": "^1.3.1",
  64. "@types/winreg": "^1.2.30",
  65. "chai": "^4.2.0",
  66. "cross-env": "^7.0.2",
  67. "electron": "^8.3.0",
  68. "electron-builder": "^22.6.1",
  69. "electron-webpack": "^2.8.2",
  70. "electron-webpack-ts": "^4.0.1",
  71. "eslint": "^7.0.0",
  72. "helios-distribution-types": "1.0.0-pre.1",
  73. "mocha": "^7.1.2",
  74. "nock": "^12.0.3",
  75. "react": "^16.13.0",
  76. "react-dom": "^16.13.0",
  77. "react-hot-loader": "^4.12.21",
  78. "react-redux": "^7.2.0",
  79. "redux": "^4.0.5",
  80. "rimraf": "^3.0.2",
  81. "ts-node": "^8.10.1",
  82. "typescript": "^3.9.3",
  83. "webpack": "^4.43.0"
  84. },
  85. "repository": {
  86. "type": "git",
  87. "url": "git+https://github.com/dscalzi/HeliosLauncher.git"
  88. }
  89. }