freechat/rtc-server/package.json
shockrah 715f334619 - Removing peers module for simplicity and reduction of data complexity
Basically the peer map system that we had before isn't going to work simply because
succesful client connections already have the data we need inside them.
Adding a whole wrapper around this just complicates things in a way that doesn't
really give any benefit.

For now every message is echo'd to all connections but that is easy enough to change
2021-04-01 17:21:57 -07:00

25 lines
571 B
JSON

{
"name": "rtc-server",
"version": "1.0.0",
"description": "RTC for Freechat",
"main": "main.js",
"scripts": {
"start": "node main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/shockrah/freechat.git"
},
"author": "shockrah",
"license": "GPL-3.0",
"bugs": {
"url": "https://gitlab.com/shockrah/freechat/issues"
},
"homepage": "https://gitlab.com/shockrah/freechat#readme",
"dependencies": {
"jsonwebtoken": "^8.5.1",
"ws": "^7.4.4"
}
}