-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 1.07 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
{
"name": "dark_backpage",
"version": "1.3.4",
"description": "DarkBot backpage",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder",
"build": "electron-builder --publish always"
},
"devDependencies": {
"electron": "11.5.0",
"electron-builder": "^23.6.0"
},
"build": {
"appId": "eu.darkbot.backpage",
"productName": "dark_backpage",
"artifactName": "backpage-${os}-${arch}.${ext}",
"asar": true,
"npmRebuild": true,
"buildDependenciesFromSource": false,
"directories": {
"buildResources": "res"
},
"mac": {
"target": "zip",
"extraResources": [
"./res/icon.icns",
"./res/flash.plugin/**"
]
},
"win": {
"target": "zip",
"extraResources": [
"./res/icon.ico",
"./res/pepflashplayer.dll"
]
},
"linux": {
"target": "zip",
"extraResources": [
"./res/icon.png",
"./res/libpepflashplayer.so"
]
}
},
"dependencies": {
"electron-context-menu": "^3.6.1"
}
}