HeliosLauncher/package.json

53 lines
1.5 KiB
JSON
Raw Normal View History

2017-05-17 06:26:46 +00:00
{
2019-03-06 05:37:31 +00:00
"name": "electronlauncher",
"version": "1.6.0",
2019-03-06 05:37:31 +00:00
"productName": "Electron Launcher",
2018-11-11 23:28:58 +00:00
"description": "Modded Minecraft Launcher",
"author": "Daniel Scalzi (https://github.com/dscalzi/)",
"license": "UNLICENSED",
2019-03-06 05:37:31 +00:00
"homepage": "https://github.com/dscalzi/ElectronLauncher",
2018-11-11 23:28:58 +00:00
"bugs": {
2019-03-06 05:37:31 +00:00
"url": "https://github.com/dscalzi/ElectronLauncher/issues"
2018-11-11 23:28:58 +00:00
},
"private": true,
2017-05-17 06:26:46 +00:00
"main": "index.js",
"scripts": {
"start": "electron .",
"cilinux": "node build.js WINDOWS && node build.js LINUX",
"cidarwin": "node build.js MAC",
"dist": "cross-env ELECTRON_BUILDER_ALLOW_UNRESOLVED_DEPENDENCIES=true node build.js",
"dist:win": "npm run dist -- WINDOWS",
"dist:mac": "npm run dist -- MAC",
"dist:linux": "npm run dist -- LINUX",
"lint": "eslint --config .eslintrc.json ."
2017-05-17 06:26:46 +00:00
},
"engines": {
"node": "10.x.x"
},
2017-05-17 06:26:46 +00:00
"dependencies": {
2018-11-18 04:30:44 +00:00
"adm-zip": "^0.4.13",
2019-05-29 01:34:19 +00:00
"async": "^3.0.1",
2018-12-01 15:06:23 +00:00
"discord-rpc": "github:discordjs/RPC",
"ejs": "^2.6.1",
"ejs-electron": "^2.0.3",
2018-12-14 05:27:15 +00:00
"electron-updater": "^4.0.6",
2019-05-29 01:34:19 +00:00
"fs-extra": "^8.0.1",
"github-syntax-dark": "^0.5.0",
2019-05-29 01:34:19 +00:00
"jquery": "^3.4.1",
"request": "^2.88.0",
2019-05-29 01:34:19 +00:00
"semver": "^6.1.1",
2019-02-05 22:06:45 +00:00
"tar-fs": "^2.0.0",
"winreg": "^1.2.4"
},
"devDependencies": {
2018-11-18 22:08:50 +00:00
"cross-env": "^5.2.0",
2019-05-29 01:34:19 +00:00
"electron": "^4.2.2",
"electron-builder": "^20.41.0",
2019-04-23 21:06:05 +00:00
"eslint": "^5.16.0"
2018-11-11 23:28:58 +00:00
},
"repository": {
"type": "git",
2019-03-06 05:37:31 +00:00
"url": "git+https://github.com/dscalzi/ElectronLauncher.git"
2017-05-17 06:26:46 +00:00
}
}