-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.2 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
{
"name": "@yume-chan/webrtc-tunnel",
"version": "1.0.0",
"description": "use WebRTC to create tunnels even when peers are behind NAT",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"server": "ts-node --files src/server",
"client": "ts-node --files src/client",
"test": "jest",
"coverage": "jest --coverage"
},
"keywords": [],
"author": "Simon Chan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yume-chan/webrtc-tunnel"
},
"bugs": {
"url": "https://github.com/yume-chan/webrtc-tunnel/issues"
},
"dependencies": {
"@types/node": "14.14.20",
"@types/npmlog": "^4.1.2",
"@types/webrtc": "0.0.30",
"@types/ws": "7.4.0",
"@yume-chan/async": "^2.1.4",
"@yume-chan/koshare-router": "^1.0.3",
"@yume-chan/multi-map": "^1.0.2",
"@yume-chan/socks5-server": "^1.0.3",
"ipaddr.js": "^2.0.1",
"npmlog": "^6.0.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"wrtc": "0.4.7",
"ws": "^8.5.0"
},
"homepage": "https://github.com/yume-chan/webrtc-tunnel#readme",
"devDependencies": {
"@types/jest": "^27.0.2",
"jest": "^27.2.4",
"ts-jest": "^27.0.5"
}
}