-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "awrtc_signaling",
"version": "1.1.0",
"description": "Default ws based signaling server for the unity asset WebRtcVideoChat, awrtc_browser and awrtc_python",
"main": "out/server.js",
"scripts": {
"tsc": "tsc",
"build": "tsc",
"start": "node out/server.js",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/because-why-not/awrtc_signaling.git"
},
"keywords": [
"webrtc",
"signaling",
"awrtc",
"unity",
"WebRtcVideoChat"
],
"author": "Christoph Kutza",
"email": "contact@because-why-not.com",
"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.2.0",
"requirejs": "^2.3.6",
"serve-static": "^1.15.0",
"ws": "^8.12.1"
},
"devDependencies": {
"@types/node": "^18.19.33",
"@types/ws": "^8.5.4",
"nodemon": "^3.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}