This repository has been archived by the owner on Jun 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
116 lines (116 loc) · 2.9 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
107
108
109
110
111
112
113
114
115
116
{
"name": "electron-lightyearvpn",
"description": "electron-lightyearvpn",
"version": "1.0.0",
"private": false,
"author": "electron-lightyearvpn",
"main": "react/public/electron.js",
"homepage": "./",
"scripts": {
"react-start": "cd react && npm run start && cd ..",
"react-build": "cd react && npm run build && cd ..",
"start": "concurrently \"cross-env BROWSER=none yarn react-start\" \"wait-on http://localhost:3000 && electron .\"",
"postinstall": "cd react && npm install && cd .."
},
"dependencies": {
"electron-is-dev": "^1.2.0",
"electron-log": "^4.2.3",
"electron-store": "^6.0.0",
"sudo-prompt": "^9.2.1"
},
"devDependencies": {
"concurrently": "^5.1.0",
"cross-env": "^7.0.2",
"electron": "^9.3.1",
"electron-builder": "^22.8.0",
"wait-on": "^4.0.1"
},
"eslintConfig": {
"extends": "react-app"
},
"build": {
"appId": "com.electron.lightyearvpn",
"productName": "electron-lightyearvpn",
"compression": "maximum",
"files": [
"build",
"node_modules"
],
"mac": {
"category": "public.app-category.utilities",
"icon": "./resources/assets/icon.icns",
"gatekeeperAssess": false,
"hardenedRuntime": true,
"entitlements": "./resources/entitlements.mac.plist",
"entitlementsInherit": "./resources/entitlements.mac.plist",
"binaries": [
"./dist/mac/electron-lightyearvpn.app/Contents/Resources/sslocal",
"./dist/mac/electron-lightyearvpn.app/Contents/Resources/proxy_conf_helper",
"./dist/mac/electron-lightyearvpn.app/Contents/Resources/privoxy"
],
"extraResources": [
{
"from": "resources",
"to": ".",
"filter": [
"**/*",
"!*.js",
"!*.exe",
"!*.bat"
]
}
]
},
"win": {
"icon": "./resources/assets/icon.ico",
"extraResources": [
{
"from": "resources",
"to": ".",
"filter": [
"**/*",
"!*.js",
"!entitlements.mac.plist",
"!sslocal",
"!proxy_conf_helper",
"!privoxy"
]
}
]
},
"linux": {
"icon": "./resources/assets/icon.png",
"target": [
"AppImage"
],
"category": "Network"
},
"dmg": {
"sign": false
},
"nsis": {
"createDesktopShortcut": "always",
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true
},
"publish": {
"provider": "github",
"owner": "electron-lightyearvpn",
"repo": "electron-lightyearvpn",
"private": false
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}