SkirdaElectronLauncher/package.json

90 lines
2.6 KiB
JSON
Raw Normal View History

2019-10-17 23:14:15 +00:00
{
"name": "helioslauncher",
"version": "2.0.0-alpha.0",
2019-10-17 23:14:15 +00:00
"productName": "Helios Launcher",
"description": "Modded Minecraft Launcher",
"author": "Daniel Scalzi (https://github.com/dscalzi/)",
"license": "UNLICENSED",
"homepage": "https://github.com/dscalzi/HeliosLauncher",
"bugs": {
"url": "https://github.com/dscalzi/HeliosLauncher/issues"
},
"private": true,
"main": "./dist/main.js",
2019-10-17 23:14:15 +00:00
"scripts": {
"clean": "rimraf dist",
"tsc": "tsc",
2019-10-17 23:14:15 +00:00
"start": "electron .",
"cilinux": "node build.js WINDOWS && node build.js LINUX",
"cidarwin": "node build.js MAC",
"dist:win": "npm run dist -- WINDOWS",
"dist:mac": "npm run dist -- MAC",
"dist:linux": "npm run dist -- LINUX",
"lint": "eslint --ext=jsx,js,tsx,ts src",
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"test": "cross-env TS_NODE_PROJECT='./tsconfig.test.json' mocha -r ts-node/register test/**/*.ts"
2019-10-17 23:14:15 +00:00
},
"engines": {
"node": "12.x.x"
},
"dependencies": {
"adm-zip": "^0.4.14",
"async": "^3.2.0",
"discord-rpc": "^3.1.1",
"electron-updater": "^4.3.1",
"fs-extra": "^9.0.0",
2019-10-17 23:14:15 +00:00
"github-syntax-dark": "^0.5.0",
2020-05-06 11:35:25 +00:00
"got": "^11.1.1",
"jquery": "^3.5.1",
"moment": "^2.25.3",
"request": "^2.88.2",
"semver": "^7.3.2",
2019-10-17 23:14:15 +00:00
"tar-fs": "^2.0.0",
"triple-beam": "^1.3.0",
"winreg": "^1.2.4",
"winston": "^3.2.1"
2019-10-17 23:14:15 +00:00
},
"devDependencies": {
"@babel/preset-react": "^7.9.4",
"@types/adm-zip": "^0.4.33",
"@types/async": "^3.2.1",
"@types/chai": "^4.2.11",
"@types/discord-rpc": "^3.0.3",
"@types/fs-extra": "^8.1.0",
"@types/jquery": "^3.3.38",
"@types/mocha": "^7.0.2",
"@types/node": "^12.12.38",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.7",
2020-05-06 11:35:25 +00:00
"@types/react-redux": "^7.1.8",
"@types/request": "^2.48.4",
"@types/tar-fs": "^2.0.0",
"@types/triple-beam": "^1.3.0",
"@types/winreg": "^1.2.30",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"electron": "^8.2.5",
"electron-builder": "^22.6.0",
"electron-webpack": "^2.8.2",
"electron-webpack-ts": "^4.0.1",
"eslint": "^6.8.0",
"helios-distribution-types": "1.0.0-pre.1",
"mocha": "^7.1.2",
"nock": "^12.0.3",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-hot-loader": "^4.12.21",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"rimraf": "^3.0.2",
"ts-node": "^8.10.1",
"typescript": "^3.8.3",
"webpack": "^4.43.0"
2019-10-17 23:14:15 +00:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/dscalzi/HeliosLauncher.git"
}
}