diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-06-24 08:51:39 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-06-24 08:51:39 +0200 |
commit | 4fc395823d28401a2631bb8ad788f06b980078ca (patch) | |
tree | 679172ef2395cd4c58a11d9e5ca8e3f4442c8c87 /package.json | |
parent | Initial commit (diff) | |
download | server-4fc395823d28401a2631bb8ad788f06b980078ca.tar.xz |
:construction: init
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 00000000..48a6d133 --- /dev/null +++ b/package.json @@ -0,0 +1,25 @@ +{ + "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" + } +} |