-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
99 lines (99 loc) · 2.7 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
{
"name": "cactus-tunnel",
"version": "0.3.0",
"description": "TCP tunnel over WebSocket and Browser",
"main": "src/index.js",
"types": "src/index.d.ts",
"bin": {
"cactus-tunnel": "bin/cactus-tunnel.js"
},
"files": [
"bin",
"src",
"views",
"public/img",
"public/js/*.js",
"public/*.html",
"package.json",
"LICENSE",
"README.md"
],
"keywords": [
"tcp",
"tunnel",
"websocket",
"http",
"browser",
"proxy",
"cli",
"socks5"
],
"scripts": {
"start": "npm run serve",
"start:cli": "npm run cli",
"build": "rimraf dist && tsc && npm run copy && npm run bundle",
"bundle": "webpack --config dist/webpack.config.js",
"copy": "cpy public LICENSE README.md ./dist",
"serve": "node dist/src/index.js",
"cli": "node dist/bin/cactus-tunnel.js",
"lint": "eslint . --ext .ts",
"test": "npm run build && jest",
"pac": "NODE_ENV=production npm test && cd dist && npm pack",
"pub": "NODE_ENV=production npm test && cd dist && npm publish",
"prepack": "test -f package-lock.json && echo please use npm run pac && exit 1 || true",
"prepublishOnly": "test -f package-lock.json && echo please use npm run pub && exit 1 || true",
"globalInstall": "npm i -g ./dist/cactus-tunnel-${npm_package_version}.tgz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeffreytse/cactus-tunnel.git"
},
"author": "Jeffrey Tse <[email protected]>",
"homepage": "https://github.com/jeffreytse/cactus-tunnel#readme",
"bugs": {
"url": "https://github.com/jeffreytse/cactus-tunnel/issues"
},
"license": "MIT",
"engines": {
"node": ">=14"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@types/express": "^4.17.13",
"@types/express-ws": "^3.0.1",
"@types/jest": "^29.2.4",
"@types/node": "^17.0.8",
"@types/pump": "^1.1.1",
"@types/webpack": "^5.28.0",
"@types/winston": "^2.4.4",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"axios": "^1.2.1",
"babel-loader": "^9.1.0",
"buffer": "^6.0.3",
"cpy-cli": "^4.2.0",
"eslint": "^8.7.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.3.1",
"process": "^0.11.10",
"puppeteer": "^19.3.0",
"rimraf": "^3.0.2",
"typescript": "^4.5.4",
"url": "^0.11.0",
"util": "^0.12.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"commander": "^9.4.1",
"express": "^4.17.3",
"express-ws": "^5.0.2",
"open": "^8.4.0",
"pump": "^3.0.0",
"websocket-stream": "^5.5.2",
"winston": "^3.8.2",
"ws": "^8.5.0"
}
}