forked from hl46000/unfx-proxy-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.25 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
{
"name": "unfx-proxy-checker",
"version": "1.1.1",
"main": "public/main.js",
"license": "MIT",
"scripts": {
"build": "run-p build:*",
"build:main": "cross-env NODE_ENV=production webpack -p --config webpack.config.main.babel.js",
"build:renderer": "cross-env NODE_ENV=production webpack -p --config webpack.config.renderer.babel.js",
"start": "run-p start:*",
"start:main": "electron --require @babel/register src/index",
"start:renderer": "cross-env NODE_ENV=development webpack-dev-server -d --config webpack.config.renderer.babel.js",
"package": "npm run build && electron-builder --linux --win",
"publish": "npm run build && electron-builder --linux --win --publish always"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.0.0",
"babel-loader": "^8.0.2",
"check-types": "^7.4.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"electron": "^3.0.0",
"electron-builder": "^20.28.4",
"electron-devtools-installer": "^2.2.4",
"file-loader": "^2.0.0",
"mmdb-reader": "*",
"npm-run-all": "^4.1.3",
"postcss-color-mod-function": "^2.4.3",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^5.3.0",
"proxy-agent": "3.0.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-hot-loader": "^4.3.8",
"react-redux": "^5.0.7",
"react-tabs": "^2.3.0",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"request-progress": "^3.0.0",
"request-promise": "^4.2.2",
"reselect": "^3.0.1",
"style-loader": "^0.23.0",
"url-loader": "^1.1.1",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
},
"build": {
"appId": "com.github.assnctr.unfxproxychecker",
"win": {
"target": [{
"target": "zip",
"arch": ["x64", "ia32"]
},
{
"target": "nsis-web",
"arch": ["x64", "ia32"]
},
{
"target": "portable",
"arch": ["x64", "ia32"]
}],
"icon": "/public/icons/icon.ico",
"artifactName": "${name}-v${version}-${arch}-${os}.${ext}"
},
"linux": {
"target": [{
"target": "AppImage",
"arch": ["x64", "ia32", "arm64", "armv7l"]
},
{
"target": "zip",
"arch": ["x64", "ia32", "arm64", "armv7l"]
}],
"icon": "/public/icons/icon.ico",
"artifactName": "${name}-v${version}-${arch}-${os}.${ext}"
},
"publish": [
{
"provider": "github",
"owner": "assnctr",
"repo": "unfx-proxy-checker",
"private": false
}
],
"productName": "Unfx Proxy Checker",
"copyright": "2018 assnctr (openproxy.space)",
"extraResources": [
"./files/**"
],
"portable" :{
"artifactName": "${name}-v${version}-${arch}-${os}-portable.${ext}"
},
"nsisWeb": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true,
"differentialPackage": true
}
}
}