7f821f36d7
The latest 1.12.2 builds have been upgraded to ForgeGradle 3. Handling is slighly different, as the version.json format is different and no longer stored in the universal jar. You have to provide the version.json as a VersionManifest module, the same as 1.13+. The rest of the launch handling hasn't changed. Nebula supports the new 1.12.2 format.
53 lines
1.5 KiB
JSON
53 lines
1.5 KiB
JSON
{
|
|
"name": "helioslauncher",
|
|
"version": "1.7.0",
|
|
"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": "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 ."
|
|
},
|
|
"engines": {
|
|
"node": "12.x.x"
|
|
},
|
|
"dependencies": {
|
|
"adm-zip": "^0.4.14",
|
|
"async": "^3.2.0",
|
|
"discord-rpc": "^3.1.1",
|
|
"ejs": "^3.1.3",
|
|
"ejs-electron": "^2.0.3",
|
|
"electron-updater": "^4.3.1",
|
|
"fs-extra": "^9.0.0",
|
|
"github-syntax-dark": "^0.5.0",
|
|
"jquery": "^3.5.1",
|
|
"request": "^2.88.2",
|
|
"semver": "^7.3.2",
|
|
"tar-fs": "^2.1.0",
|
|
"winreg": "^1.2.4"
|
|
},
|
|
"devDependencies": {
|
|
"cross-env": "^7.0.2",
|
|
"electron": "^9.0.2",
|
|
"electron-builder": "^22.7.0",
|
|
"eslint": "^7.1.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/dscalzi/HeliosLauncher.git"
|
|
}
|
|
}
|