-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.43 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "launcher",
"description": "Launcher App for Unity Client",
"version": "0.1.0",
"main": "dist/main.js",
"repository": "https://github.com/valkyrienyanko/Unity-MMORPG-Boilerplate",
"author": "valkyrienyanko",
"license": "MIT",
"scripts": {
"start": "set ELECTRON_IS_DEV=0 && electron .",
"dev:start": "set ELECTRON_IS_DEV=1 && tsc && electron .",
"dev:lint": "eslint . --fix",
"build:win": "set ELECTRON_IS_DEV=0 && electron-builder --win",
"build:mac": "export ELECTRON_IS_DEV=0 && electron-builder --mac",
"build:linux": "export ELECTRON_IS_DEV=0 && electron-builder --linux",
"postinstall": "electron-builder install-app-deps"
},
"devDependencies": {
"@types/node": "^14.0.11",
"adm-zip": "^0.4.14",
"electron": "^9.0.1",
"electron-builder": "^22.7.0",
"electron-dl": "^3.0.0",
"electron-is-dev": "^1.2.0",
"eslint": "6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"fs": "^0.0.1-security",
"promisify": "^0.0.3",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"build": {
"appId": "me.valk.launcher",
"productName": "Launcher",
"directories": {
"buildResources": "build",
"output": "dist"
},
"win": {
"target": "nsis",
"icon": "build/icon.ico",
"publish": [
"github"
]
},
"linux": {
"icon": "build/icon.ico",
"category": "Game",
"synopsis": "Launcher for Unity client"
},
"mac": {
"category": "public.app-category.games",
"icon": "build/icon.icns",
"darkModeSupport": "false",
"type": "distribution"
},
"nsis": {
"oneClick": true,
"perMachine": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": "false",
"uninstallDisplayName": "${productName} ${version}",
"license": "eula.txt",
"artifactName": "${productName} Setup ${version}.${ext}",
"deleteAppDataOnUninstall": false,
"differentialPackage": true,
"displayLanguageSelector": false,
"multiLanguageInstaller": false,
"unicode": true,
"warningsAsErrors": true,
"runAfterFinish": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"menuCategory": false,
"shortcutName": "Launcher"
}
}
}