-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
63 lines (63 loc) · 1.42 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
{
"name": "discordsandbox",
"version": "1.3.0",
"description": "Discord Sandboxed",
"main": "main.js",
"scripts": {
"start": "electron . dev",
"postinstall": "electron-builder install-app-deps",
"package-win": "electron-builder --win --publish never",
"package-AppImage": "electron-builder --linux AppImage"
},
"repository": "https://github.com/khlam/discord-sandboxed",
"keywords": [
"discord",
"privacy",
"sandbox"
],
"author": "Kin-Ho Lam",
"license": "GNU GENERAL PUBLIC LICENSE Version 3",
"devDependencies": {
"electron": "^11.5.0",
"electron-builder": "^21.2.0"
},
"dependencies": {
"chokidar": "^3.3.1",
"iohook": "^0.9.3"
},
"iohook": {
"targets": [
"electron-85"
],
"platforms": [
"win32"
],
"arches": [
"x64"
]
},
"build": {
"appId": "com.electron.DiscordSandboxed",
"productName": "Discord Sandboxed",
"win": {
"asar": true,
"icon": "views/assets/icon.ico",
"target": [
"nsis"
]
},
"nsis": {
"installerIcon": "views/assets/icon.ico",
"uninstallerIcon": "views/assets/icon.ico",
"license": "LICENSE.md",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"runAfterFinish": true
},
"directories": {
"output": "release"
}
}
}