HeliosLauncher/package.json

104 lines
2.8 KiB
JSON
Raw Normal View History

2017-05-17 06:26:46 +00:00
{
"name": "westeroscraftlauncher",
2018-05-10 09:56:19 +00:00
"version": "0.0.1-alpha.3",
2017-05-17 06:26:46 +00:00
"description": "Custom modded launcher for Westeroscraft",
"productName": "WesterosCraft Launcher",
2017-05-17 06:26:46 +00:00
"main": "index.js",
"scripts": {
2017-11-27 21:56:26 +00:00
"start": "electron index.js",
2018-04-08 17:30:25 +00:00
"travislinux": "electron-builder --linux --win",
"travisdarwin": "electron-builder --mac",
"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-17 06:26:46 +00:00
},
"engines": {
"node": "10.0.x"
},
2017-05-17 06:26:46 +00:00
"repository": {
"type": "git",
2018-04-08 17:30:25 +00:00
"url": "git+https://github.com/WesterosCraftCode/ElectronLauncher.git"
2017-05-17 06:26:46 +00:00
},
"author": "Daniel Scalzi",
2017-05-17 06:26:46 +00:00
"license": "AGPL-3.0",
"bugs": {
2018-04-08 17:30:25 +00:00
"url": "https://github.com/WesterosCraftCode/ElectronLauncher/issues"
2017-05-17 06:26:46 +00:00
},
"homepage": "http://www.westeroscraft.com/",
"dependencies": {
"adm-zip": "^0.4.9",
"async": "^2.6.0",
"discord-rpc": "^3.0.0-beta.10",
"ejs": "^2.6.1",
"ejs-electron": "^2.0.2",
"electron-is-dev": "^0.3.0",
"electron-updater": "^2.21.10",
"jquery": "^3.3.1",
2018-04-08 17:30:25 +00:00
"mkdirp": "^0.5.1",
2018-04-27 04:33:30 +00:00
"request": "^2.85.0",
"rimraf": "^2.6.2",
"tar-fs": "^1.16.2",
"uuid": "^3.2.1",
"winreg": "^1.2.4"
},
"devDependencies": {
"electron": "^2.0.0",
2018-05-10 09:56:19 +00:00
"electron-builder": "^20.13.3"
},
"build": {
"appId": "westeroscraftlauncher",
"productName": "WesterosCraft Launcher",
"artifactName": "${productName}.${ext}",
"copyright": "Copyright © 2018 WesterosCraft",
"directories": {
"buildResources": "build",
"output": "dist"
},
"win": {
2018-04-08 17:30:25 +00:00
"target": [
{
"target": "nsis",
"arch": "x64"
}
],
"icon": "build/icon.ico"
},
2018-04-08 17:30:25 +00:00
"nsis": {
"oneClick": false,
"perMachine": true,
"allowElevation": true,
"installerIcon": "build/icon.ico",
"uninstallerIcon": "build/icon.ico"
2018-04-08 17:30:25 +00: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"
},
"compression": "maximum",
"files": [
"!{target,logs,.vscode,docs,dev-app-update.yml}"
],
"extraResources": [
"libraries"
],
"asar": true
2017-05-17 06:26:46 +00:00
}
}