summary refs log tree commit diff
path: root/webrtc/package.json
blob: 8163ac575d19ff9bc7337a643d8d562c076dad7d (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
{
	"name": "rtc",
	"version": "1.0.0",
	"description": "A javascript fosscord webrtc server for voice and video communication",
	"main": "index.js",
	"scripts": {
		"postinstall": "npm link @fosscord/util",
		"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": {
		"../util": "*",
		"mediasoup": "^3.7.16",
		"node-turn": "^0.0.6",
		"ws": "^7.4.6"
	}
}