summary refs log tree commit diff
path: root/webrtc/package.json
blob: a8fc054dca2a9c96ee5dd50180005a9f69018d15 (plain) (blame)
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
{
	"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": {
		"@types/libsodium-wrappers": "^0.7.9",
		"dotenv": "^12.0.4",
		"libsodium": "^0.7.10",
		"libsodium-wrappers": "^0.7.10",
		"mediasoup": "^3.9.5",
		"node-turn": "^0.0.6",
		"sdp-transform": "^2.14.1",
		"tsconfig-paths": "^3.12.0",
		"ws": "^7.4.6"
	}
}