2017-05-16 23:26:46 -07:00
|
|
|
{
|
|
|
|
"name": "westeroscraftlauncher",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "Custom modded launcher for Westeroscraft",
|
2017-08-26 22:13:48 -07:00
|
|
|
"productName": "WesterosCraft Launcher",
|
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-01-24 13:23:44 -08:00
|
|
|
"dist": "SET ELECTRON_BUILDER_ALLOW_UNRESOLVED_DEPENDENCIES=true & electron-builder",
|
|
|
|
"dist:win": "npm run dist -- --win --x64",
|
|
|
|
"dist:mac": "npm run dist -- --mac",
|
|
|
|
"dist:linux": "npm run dist -- --linux --x64",
|
|
|
|
"dist:all": "npm run dist -- -wl --x64"
|
2017-05-16 23:26:46 -07:00
|
|
|
},
|
2017-10-04 19:38:05 -07:00
|
|
|
"engines": {
|
2017-11-07 11:51:43 -08:00
|
|
|
"node": "8.9.x"
|
2017-10-04 19:38:05 -07:00
|
|
|
},
|
2017-05-16 23:26:46 -07:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://gitlab.com/westeroscraft/electronlauncher.git"
|
|
|
|
},
|
2017-10-04 19:38:05 -07:00
|
|
|
"author": "Daniel Scalzi",
|
2017-05-16 23:26:46 -07:00
|
|
|
"license": "AGPL-3.0",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://gitlab.com/westeroscraft/electronlauncher/issues"
|
|
|
|
},
|
|
|
|
"homepage": "http://www.westeroscraft.com/",
|
|
|
|
"dependencies": {
|
|
|
|
"adm-zip": "^0.4.7",
|
2017-11-18 20:25:52 -08:00
|
|
|
"async": "^2.6.0",
|
2018-01-18 21:33:05 -08:00
|
|
|
"discord-rpc": "^3.0.0-beta.8",
|
2017-08-26 22:13:48 -07:00
|
|
|
"ejs": "^2.5.7",
|
|
|
|
"ejs-electron": "^2.0.1",
|
2018-02-19 17:27:42 -08:00
|
|
|
"jquery": "^3.3.1",
|
2017-11-27 13:56:26 -08:00
|
|
|
"request-promise-native": "^1.0.5",
|
2018-03-28 13:13:57 -07:00
|
|
|
"uuid": "^3.2.1",
|
|
|
|
"winreg": "^1.2.4"
|
2017-08-26 22:13:48 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-03-28 06:45:08 -07:00
|
|
|
"electron": "^1.8.4",
|
|
|
|
"electron-builder": "^20.8.1"
|
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": {
|
|
|
|
"target": "portable",
|
|
|
|
"icon": "build/icon.ico"
|
|
|
|
},
|
2018-01-24 13:23:44 -08:00
|
|
|
"mac": {
|
|
|
|
"target": "dmg",
|
|
|
|
"category": "public.app-category.games",
|
|
|
|
"icon": "build/icon.icns",
|
|
|
|
"type": "distribution"
|
|
|
|
},
|
|
|
|
"linux": {
|
|
|
|
"target": "AppImage",
|
|
|
|
"maintainer": "Daniel Scalzi",
|
|
|
|
"vendor": "WesterosCraft",
|
|
|
|
"synopsis": "Custom modded launcher for WesterosCraft",
|
|
|
|
"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": [
|
|
|
|
"!{target,logs,.vscode,docs}"
|
|
|
|
],
|
2018-01-23 22:08:29 -08:00
|
|
|
"asar": true
|
2017-05-16 23:26:46 -07:00
|
|
|
}
|
|
|
|
}
|