1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-20 17:51:35 +02:00
server/webrtc/package.json
2022-06-26 20:51:39 +10:00

30 lines
699 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": "npx tsc -p .",
"start": "npm run build && node dist/start.js"
},
"keywords": [],
"author": "Fosscord",
"license": "AGPL-3.0-only",
"devDependencies": {
"@types/node": "^15.6.1",
"@types/sdp-transform": "^2.4.5",
"@types/ws": "^7.4.4",
"ts-node": "^10.4.0",
"typescript": "^4.3.2"
},
"dependencies": {
"dotenv": "^12.0.4",
"mediasoup": "^3.9.5",
"node-turn": "^0.0.6",
"sdp-transform": "^2.14.1",
"tsconfig-paths": "^3.12.0",
"ws": "^7.4.6"
}
}