2017-05-16 23:26:46 -07:00
|
|
|
{
|
|
|
|
"name": "westeroscraftlauncher",
|
2018-12-20 23:29:33 -08:00
|
|
|
"version": "1.4.0",
|
2017-08-26 22:13:48 -07:00
|
|
|
"productName": "WesterosCraft Launcher",
|
2018-11-11 15:28:58 -08:00
|
|
|
"description": "Modded Minecraft Launcher",
|
|
|
|
"author": "Daniel Scalzi (https://github.com/dscalzi/)",
|
|
|
|
"license": "UNLICENSED",
|
|
|
|
"homepage": "https://github.com/WesterosCraftCode/ElectronLauncher",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/WesterosCraftCode/ElectronLauncher/issues"
|
|
|
|
},
|
|
|
|
"private": true,
|
2017-05-16 23:26:46 -07:00
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2017-11-27 13:56:26 -08:00
|
|
|
"start": "electron index.js",
|
2018-11-11 15:28:58 -08:00
|
|
|
"cilinux": "electron-builder --linux --win",
|
|
|
|
"cidarwin": "electron-builder --mac",
|
2018-11-18 14:08:50 -08:00
|
|
|
"dist": "cross-env ELECTRON_BUILDER_ALLOW_UNRESOLVED_DEPENDENCIES=true electron-builder",
|
2018-01-24 13:23:44 -08:00
|
|
|
"dist:win": "npm run dist -- --win --x64",
|
|
|
|
"dist:mac": "npm run dist -- --mac",
|
|
|
|
"dist:linux": "npm run dist -- --linux --x64",
|
2018-12-01 05:20:42 -08:00
|
|
|
"lint": "eslint --config .eslintrc.json ."
|
2017-05-16 23:26:46 -07:00
|
|
|
},
|
2017-10-04 19:38:05 -07:00
|
|
|
"engines": {
|
2018-09-17 21:06:20 -07:00
|
|
|
"node": "10.x.x"
|
2017-10-04 19:38:05 -07:00
|
|
|
},
|
2017-05-16 23:26:46 -07:00
|
|
|
"dependencies": {
|
2018-11-17 20:30:44 -08:00
|
|
|
"adm-zip": "^0.4.13",
|
2018-05-22 05:41:22 -07:00
|
|
|
"async": "^2.6.1",
|
2018-12-01 07:06:23 -08:00
|
|
|
"discord-rpc": "github:discordjs/RPC",
|
2018-05-06 22:34:57 -07:00
|
|
|
"ejs": "^2.6.1",
|
2018-05-10 18:06:59 -07:00
|
|
|
"ejs-electron": "^2.0.3",
|
2018-12-13 21:27:15 -08:00
|
|
|
"electron-updater": "^4.0.6",
|
2018-12-01 05:20:42 -08:00
|
|
|
"fs-extra": "^7.0.1",
|
2018-06-30 11:23:42 -07:00
|
|
|
"github-syntax-dark": "^0.5.0",
|
2018-02-19 17:27:42 -08:00
|
|
|
"jquery": "^3.3.1",
|
2018-08-29 10:24:48 -07:00
|
|
|
"request": "^2.88.0",
|
2018-10-14 15:42:13 -07:00
|
|
|
"semver": "^5.6.0",
|
2018-06-20 06:18:09 -07:00
|
|
|
"tar-fs": "^1.16.3",
|
2018-03-28 13:13:57 -07:00
|
|
|
"winreg": "^1.2.4"
|
2017-08-26 22:13:48 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-11-18 14:08:50 -08:00
|
|
|
"cross-env": "^5.2.0",
|
2018-12-21 03:51:08 -08:00
|
|
|
"electron": "^4.0.0",
|
2018-12-20 23:29:33 -08:00
|
|
|
"electron-builder": "^20.38.4",
|
2018-12-13 21:27:15 -08:00
|
|
|
"eslint": "^5.10.0"
|
2018-11-11 15:28:58 -08:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/WesterosCraftCode/ElectronLauncher.git"
|
2018-01-23 22:08:29 -08:00
|
|
|
},
|
|
|
|
"build": {
|
2018-01-24 13:23:44 -08:00
|
|
|
"appId": "westeroscraftlauncher",
|
|
|
|
"productName": "WesterosCraft Launcher",
|
|
|
|
"artifactName": "${productName}.${ext}",
|
2018-01-23 22:08:29 -08:00
|
|
|
"copyright": "Copyright © 2018 WesterosCraft",
|
|
|
|
"directories": {
|
|
|
|
"buildResources": "build",
|
2018-01-24 13:23:44 -08:00
|
|
|
"output": "dist"
|
2018-01-23 22:08:29 -08:00
|
|
|
},
|
|
|
|
"win": {
|
2018-04-08 10:30:25 -07:00
|
|
|
"target": [
|
|
|
|
{
|
|
|
|
"target": "nsis",
|
|
|
|
"arch": "x64"
|
|
|
|
}
|
|
|
|
],
|
2018-01-23 22:08:29 -08:00
|
|
|
"icon": "build/icon.ico"
|
|
|
|
},
|
2018-04-08 10:30:25 -07:00
|
|
|
"nsis": {
|
|
|
|
"oneClick": false,
|
|
|
|
"perMachine": true,
|
|
|
|
"allowElevation": true,
|
|
|
|
"installerIcon": "build/icon.ico",
|
2018-04-08 17:56:44 -07:00
|
|
|
"uninstallerIcon": "build/icon.ico"
|
2018-04-08 10:30:25 -07:00
|
|
|
},
|
2018-01-24 13:23:44 -08:00
|
|
|
"mac": {
|
2018-11-18 18:51:48 -08:00
|
|
|
"target": "dmg",
|
2018-01-24 13:23:44 -08:00
|
|
|
"category": "public.app-category.games",
|
2018-11-01 14:37:05 -07:00
|
|
|
"icon": "build/icon.icns"
|
2018-01-24 13:23:44 -08:00
|
|
|
},
|
|
|
|
"linux": {
|
|
|
|
"target": "AppImage",
|
|
|
|
"maintainer": "Daniel Scalzi",
|
|
|
|
"vendor": "WesterosCraft",
|
2018-11-11 15:28:58 -08:00
|
|
|
"synopsis": "Custom Launcher for WesterosCraft",
|
2018-01-24 13:23:44 -08:00
|
|
|
"description": "Custom launcher which allows users to join WesterosCraft. All mods, configurations, and updates are handled automatically.",
|
|
|
|
"category": "Game"
|
|
|
|
},
|
|
|
|
"deb": {
|
|
|
|
"compression": "xz",
|
|
|
|
"packageCategory": "Games",
|
|
|
|
"priority": "optional"
|
|
|
|
},
|
2018-01-23 22:08:29 -08:00
|
|
|
"compression": "maximum",
|
2018-01-24 13:23:44 -08:00
|
|
|
"files": [
|
2018-12-01 07:06:23 -08:00
|
|
|
"!{dist,.gitignore,.vscode,docs,dev-app-update.yml,.travis.yml,.nvmrc,.eslintrc.json}"
|
2018-01-24 13:23:44 -08:00
|
|
|
],
|
2018-04-28 15:07:39 -07:00
|
|
|
"extraResources": [
|
|
|
|
"libraries"
|
|
|
|
],
|
2018-01-23 22:08:29 -08:00
|
|
|
"asar": true
|
2017-05-16 23:26:46 -07:00
|
|
|
}
|
|
|
|
}
|