forked from because-why-not/awrtc_signaling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "awrtc_signaling",
"version": "0.984.0",
"description": "Default ws based signaling server for awrtc_browser and the unity asset WebRtcVideoChat",
"scripts": {
"build": "tsc && chmod +x server.js",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/because-why-not/awrtc_signaling.git"
},
"keywords": [
"webrtc",
"signaling",
"awrtc",
"unity",
"WebRtcVideoChat"
],
"author": "Christoph Kutza",
"contributors": [
"Jesús Leganés-Combarro 'piranna' <[email protected]>"
],
"email": "[email protected]",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/because-why-not/awrtc_signaling/issues"
},
"homepage": "https://github.com/because-why-not/awrtc_signaling#readme",
"dependencies": {
"finalhandler": "^1.1.2",
"requirejs": "^2.3.6",
"serve-static": "^1.14.1",
"ws": "^7.4.2"
},
"devDependencies": {
"@types/node": "^14.14.21",
"@types/ws": "^7.4.0",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=15"
}
}