-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.65 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
{
"name": "skylinehosting",
"version": "1.2.9",
"description": "Skyline Hosting's Desktop App",
"main": "src/js/electron/index.js",
"scripts": {
"start": "electron --enable-transparent-visuals --disable-gpu .",
"build": "electron-builder build",
"release": "electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"author": "SkylineHosting",
"repository": "https://github.com/Skyline-Hosting/Skyline-Desktop",
"license": "MIT",
"dependencies": {
"electron-log": "^4.3.5",
"electron-updater": "^4.3.9",
"glasstron": "^0.0.7",
"node-static": "^0.7.11"
},
"devDependencies": {
"electron": "^14.0.1",
"electron-builder": "^22.11.7",
"electron-rebuild": "^3.2.0"
},
"build": {
"protocols": {
"name": "skyline",
"schemes": [
"skyline"
]
},
"publish": [
{
"provider": "github",
"owner": "Skyline-Hosting",
"repo": "Skyline-Desktop",
"releaseType": "release",
"private": true
}
],
"win": {
"target": "nsis",
"asar": "false"
},
"mac": {
"target": "dmg"
},
"linux": {
"target": "AppImage",
"maintainer": "package.skylinehosting.desktopapp",
"category": "Network",
"vendor": "Skyline Hosting",
"description": "Accessing Skyline Hosting, all from one place"
},
"nsis": {
"deleteAppDataOnUninstall": true,
"shortcutName": "Skyline Hosting",
"displayLanguageSelector": true,
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": false,
"createDesktopShortcut": true
}
}
}