This repository has been archived by the owner on Mar 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 1.98 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
{
"name": "vtro",
"version": "0.2.1",
"description": "A simple trojan GUI",
"main": "main.js",
"build": {
"productName": "Vtro",
"win": {
"target": [
{
"target": "zip",
"arch": [
"x64",
"ia32"
]
}
],
"icon": "icon/256.ico"
},
"extraResources": [
{
"from": "icon/tray.ico",
"to": "tray.ico"
}
],
"extraFiles": [
"proxy/",
{
"from": "extra-trojan/",
"to": "trojan/"
}
],
"files": [
"**/node_modules/**/*",
{
"from": "lib",
"to": ""
}
]
},
"scripts": {
"test": "jest --coverage",
"coverage": "codecov -f ./coverage/coverage-final.json",
"start": "electron . ",
"webpack": "webpack --config ./src/config/webpack.config.js",
"rollup": "rollup -c -m",
"build": "webpack --config ./src/config/webpack.config.js&&rollup -c -m",
"watch": "webpack --config ./src/config/webpack.config.js --watch",
"dist": "electron-builder --win ",
"predist": "npm run build"
},
"repository": "https://github.com/wk989898/Vtro",
"keywords": [
"Electron",
"trojan",
"GUI",
"client"
],
"author": "wk989898",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.3",
"copy-dir": "^1.3.0",
"css-loader": "^3.6.0",
"electron": "^8.5.0",
"electron-builder": "^22.7.0",
"element-ui": "^2.13.2",
"jest": "^26.1.0",
"rollup": "^2.18.2",
"rollup-plugin-banner": "^0.2.1",
"rollup-plugin-terser": "^5.3.0",
"spectron": "^10.0.1",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^2.3.7",
"url-loader": "^4.1.0",
"vue": "^2.6.11",
"vue-loader": "^15.9.3",
"vue-router": "^3.3.4",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"ping": "^0.2.3",
"socks-proxy-agent": "^5.0.0",
"tcp-ping": "^0.1.1"
}
}