1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-21 18:21:36 +02:00
server/webrtc/package.json
Flam3rboy b1f3c9bc6a webrtc
2021-08-12 20:50:29 +02:00

26 lines
572 B
JSON

{
"name": "rtc",
"version": "1.0.0",
"description": "A javascript fosscord webrtc server for voice and video communication",
"main": "index.js",
"scripts": {
"test": "npm run build && node dist/test.js",
"build": "tsc -b .",
"start": "npm run build && node dist/start.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^15.6.1",
"@types/ws": "^7.4.4",
"typescript": "^4.3.2"
},
"dependencies": {
"@fosscord/server-util": "^1.3.15",
"mediasoup": "^3.7.16",
"node-turn": "^0.0.6",
"ws": "^7.4.6"
}
}