-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 862 Bytes
/
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
{
"name": "tcp-websocket-tunnel",
"version": "1.3.0",
"description": "Simple tunneling server between TCP and WebSocket.",
"main": "tcp-websocket-tunnel.js",
"bin": {
"tcp-websocket-tunnel": "bin/tcp-websocket-tunnel.js"
},
"dependencies": {
"commander": "^9.3.0",
"net": "^1.0.2",
"ws": "^8.7.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"tunnel",
"proxy",
"tcp",
"websocket"
],
"author": "Densyakun <[email protected]> (https://densyakun.github.io/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Densyakun/tcp-websocket-tunnel.git"
},
"bugs": {
"url": "https://github.com/Densyakun/tcp-websocket-tunnel/issues"
},
"homepage": "https://github.com/Densyakun/tcp-websocket-tunnel#readme"
}