-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.62 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
{
"name": "OpenVPNConfiguratorForDDWRTAndEdgeRouter",
"description": "A small Utility to assist with OpenVPN configurations on DD-WRT and EdgeRouter",
"author": "Yingchun Li<[email protected]>",
"version": "2.3.1",
"private": true,
"license": "MIT",
"dependencies": {
"immutability-helper": "^2.6.4",
"ip": "^1.1.5",
"lodash": "^4.17.19",
"material-ui": "^0.20.0",
"node-forge": "^0.7.1",
"node-ssh": "^5.1.2",
"ping": "^0.2.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-scripts": "1.1.1",
"tmp": "^0.1.0"
},
"homepage": "./",
"main": "electron-starter.js",
"scripts": {
"start": "nf start -p 5000",
"react-start": "react-scripts start",
"electron-start": "node electron-wait-react",
"electron": "electron .",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"pack": "electron-builder --dir",
"dist": "electron-builder -w",
"analyze": "source-map-explorer build/static/js/main.*"
},
"devDependencies": {
"electron": "^1.8.2",
"electron-builder": "^24.8.0",
"foreman": "^2.0.0",
"source-map-explorer": "^1.5.0"
},
"build": {
"appId": "org.yingchunli.openVPNConfigAdminForDDWRTAndEdgeRouter",
"directories": {
"buildResources": "build"
},
"files": [
"build/",
"electron-starter.js",
"package.json"
],
"extraMetadata": {
"main": "electron-starter.js"
},
"win": {
"target": [
{
"target": "portable",
"arch": [
"ia32"
]
}
]
}
}
}