-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.12 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
{
"name": "@kloak-it/tq-proxy",
"version": "0.0.52",
"license": "MIT",
"description": "QT PROXY Server/Client",
"scripts": {
"build": "tsc --project tsconfig.json",
"server": "node ./server",
"client": "node ./client",
"test": "jest",
"start": "node cli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoNETProject/tq-proxy.git"
},
"author": {
"name": "TQ-Proxy project",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/CoNETProject/tq-proxy/issues"
},
"homepage": "https://www.tq-proxy.com",
"devDependencies": {
"@types/express": "4.17.13",
"@types/jest": "^27.0.1",
"@types/node": "^16.6.2",
"jest": "^27.0.6",
"supertest": "^6.1.6"
},
"dependencies": {
"async": "^3.2.1",
"colors": "^1.4.0",
"express": "^4.17.1",
"hexdump-nodejs": "^0.1.0",
"node-uuid": "^1.4.8",
"uuid": "^8.3.2"
},
"bin": {
"tq-proxy": "./cli.js"
},
"keywords": [
"proxy-server",
"shadowsocks",
"seguro",
"kloak",
"nodejs",
"typescript",
"socks"
],
"files": [
"dist",
"cli.js",
"LICENSE",
"README.md",
"package.json"
],
"main": "dist/index.js"
}