-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (51 loc) · 1016 Bytes
/
Copy pathpackage.json
File metadata and controls
63 lines (51 loc) · 1016 Bytes
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": "tg-auto-proxy",
"version": "1.0.3",
"main": "main/main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"build": {
"appId": "com.proxysetup.app",
"productName": "Proxy Setup",
"directories": {
"buildResources": "build"
},
"files": [
"main/**/*",
"renderer/**/*",
"preload/**/*",
"build/**/*",
"package.json"
],
"extraResources": [
{
"from": "build",
"to": "build"
}
],
"asar": true,
"artifactName": "${productName}-${version}-${os}.${ext}",
"win": {
"target": "nsis",
"icon": "build/icon.ico"
},
"linux": {
"target": "AppImage",
"icon": "build/icon.png",
"category": "Utility"
},
"mac": {
"target": "dmg",
"icon": "build/icon.icns"
}
},
"dependencies": {
"node-ssh": "^13.2.1"
},
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.0.0"
}
}