-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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
{
"name": "hiproxy-app",
"productName": "hiproxy desktop",
"private": true,
"version": "1.0.0-beta",
"description": "hiporxy desktop application",
"main": "main.js",
"scripts": {
"start": "./node_modules/.bin/electron .",
"pack": "./node_modules/.bin/electron-builder --dir",
"release": "./node_modules/.bin/electron-builder --mac --win --publish always",
"dist": "./node_modules/.bin/electron-builder --win --mac",
"postinstall": "electron-builder install-app-deps"
},
"repository": "https://github.com/hiproxy/hiproxy-app",
"keywords": [
"hiproxy",
"app",
"desktop"
],
"author": "zdying",
"license": "MIT",
"dependencies": {
"electron-log": "^2.2.9",
"electron-updater": "^2.15.0",
"hiproxy": "^1.2.8",
"hiproxy-plugin-dashboard": "^1.1.5",
"hiproxy-plugin-noah": "^1.1.0"
},
"devDependencies": {
"electron": "~1.7.8",
"electron-builder": "^19.37.2"
},
"build": {
"appId": "org.hiproxy.app",
"protocols": {
"name": "hiproxy-deep-linking",
"schemes": [
"hiproxy"
]
},
"productName": "hiproxy desktop",
"files": [
"app/**/*",
"main.js",
"package.json"
],
"mac": {
"category": "org.hiproxy.app"
},
"win": {
"target": "nsis"
}
}
}