-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.12 KB
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
83
84
85
86
87
88
{
"name": "mult-client",
"version": "1.0.1",
"description": "Mult Client - A cross-platform app installer with system tray support",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build:win": "electron-builder --win",
"build:installer": "electron-builder --win --x64",
"package": "electron-packager . \"Mult Client\" --platform=win32 --arch=x64 --icon=assets/icon.png --out=dist --overwrite"
},
"keywords": [
"installer",
"electron",
"cross-platform"
],
"author": "",
"license": "ISC",
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.9.1",
"electron-packager": "^17.1.2",
"png-to-ico": "^3.0.1"
},
"dependencies": {
"axios": "^1.6.0",
"electron-updater": "^6.6.2"
},
"build": {
"appId": "com.mult.client",
"productName": "Mult Client",
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "assets/icon.png",
"publisherName": "Mult Team",
"verifyUpdateCodeSignature": false,
"sign": null,
"signingHashAlgorithms": []
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": false,
"createStartMenuShortcut": true,
"installerIcon": "assets/icon.ico",
"uninstallerIcon": "assets/icon.ico",
"installerHeaderIcon": "assets/icon.ico",
"deleteAppDataOnUninstall": true,
"runAfterFinish": false,
"perMachine": false,
"allowElevation": true,
"include": "build/installer.nsh",
"artifactName": "Mult Client Setup.${ext}",
"warningsAsErrors": false
},
"linux": {
"target": [
"AppImage"
],
"icon": "assets/icon.png"
},
"mac": {
"target": [
"dmg"
],
"icon": "assets/icon.icns"
},
"protocols": {
"name": "mult-installer-protocol",
"schemes": [
"mult"
]
},
"publish": {
"provider": "github",
"owner": "Luke1505",
"repo": "MultClient"
}
}
}