-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
106 lines (106 loc) · 2.22 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "proxy-socks",
"version": "0.0.2",
"license": "MIT",
"description": "Electron app containing SOCKSv5 server and SSH2 client",
"private": true,
"author": {
"name": "belodetek.io",
"email": "[email protected]",
"url": "http://belodetek.io"
},
"repository": "https://github.com/ab77/proxy-socks",
"main": "main.js",
"scripts": {
"test": "true",
"start": "yarn install && electron .",
"dev": "yarn install && electron . --debug",
"release": "yarn install && build --linux --mac --win"
},
"build": {
"publish": [
"github"
],
"asar": true,
"extraResources": [
"extra"
],
"files": [
"!dist",
"!build",
"!.DS_Store",
"!.git*",
"!*.log",
"!*.lock",
"!dev-app-update.yaml",
"!CNAME",
"!_config.yml",
"!README.md"
],
"directories": {
"buildResources": "build"
},
"appId": "com.proxy-socks.app",
"mac": {
"category": "public.app-category.business"
},
"linux": {
"category": "Network",
"icon": "build/icon.png"
},
"dmg": {
"icon": "build/icon.icns",
"background": "build/icon.png",
"contents": [
{
"x": 110,
"y": 150,
"type": "file"
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"icon": "build/icon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"nsis": {
"license": "LICENSE",
"oneClick": false,
"perMachine": true,
"allowElevation": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": true
}
},
"dependencies": {
"socksv5": "git://github.com/mscdex/socksv5.git",
"ssh2": "git://github.com/mscdex/ssh2.git",
"string.format": "*",
"auto-launch": "*",
"update-electron-app": "*"
},
"devDependencies": {
"electron": "*",
"devtron": "*",
"electron-builder": "*",
"cli": "*",
"cliff": "*"
},
"versionist": {
"publishedAt": "2022-11-25T17:32:43.483Z"
}
}