-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
122 lines (122 loc) · 3.35 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
117
118
119
120
121
122
{
"name": "unfx-proxy-parser",
"version": "2.0.0",
"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 --win",
"publish": "npm run build && electron-builder --linux --win --publish always"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@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.6",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.1.5",
"babel-loader": "^8.0.4",
"cross-env": "^5.2.0",
"css-loader": "^1.0.1",
"electron": "^4.0.0",
"electron-builder": "^20.36.2",
"electron-devtools-installer": "^2.2.4",
"electron-react-devtools": "^0.5.3",
"file-loader": "^2.0.0",
"js-flock": "^3.5.3",
"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",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-hot-loader": "^4.3.12",
"react-markdown": "^4.0.3",
"react-redux": "^5.1.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"request-progress": "^3.0.0",
"request-promise": "^4.2.2",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"build": {
"appId": "com.github.assnctr.unfxproxyparser",
"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": "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-parser",
"private": false
}
],
"productName": "Unfx Proxy Parser",
"copyright": "2019 assnctr (openproxy.space)",
"extraResources": [
"./files/**"
],
"portable": {
"artifactName": "${name}-v${version}-${arch}-${os}-portable.${ext}"
},
"nsisWeb": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true,
"differentialPackage": true
}
}
}