forked from versatica/mediasoup-sdp-bridge
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
77 lines (77 loc) · 2.27 KB
/
package.json
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "mediasoup-sdp-bridge",
"version": "3.6.5",
"description": "Node.js library to allow integration of SDP based clients with mediasoup",
"contributors": [
"Iñaki Baz Castillo <[email protected]> (https://inakibaz.me)",
"Juan Navarro <[email protected]> (https://github.com/j1elo)"
],
"homepage": "https://mediasoup.org",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/versatica/mediasoup-sdp-bridge.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/mediasoup"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=16.0"
},
"scripts": {
"prepare": "npm run build",
"build": "npm run typescript:build",
"build:watch": "npm run typescript:watch",
"clean": "npm run typescript:clean",
"rebuild": "npm run typescript:rebuild",
"format": "prettier --write './*.{js,json}' '{src,test}/**/*.{js,json,ts}'",
"typescript:build": "node npm-scripts.js typescript:build",
"typescript:watch": "node npm-scripts.js typescript:watch",
"lint": "node npm-scripts.js lint",
"test": "node npm-scripts.js test",
"coverage": "node npm-scripts.js coverage"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"testRegex": "test/test.*\\.js"
},
"dependencies": {
"awaitqueue": "^2.1.1",
"debug": "^4.1.1",
"h264-profile-level-id": "^1.0.1",
"lodash": "^4.0.0",
"sdp-transform": "^2.14.0",
"supports-color": "^7.1.0",
"uuid": "^8.1.0"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.0",
"@types/debug": "^4.1.5",
"@types/lodash": "^4.0.0",
"@types/node": "^16.0.0",
"@types/sdp-transform": "^2.4.3",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jest": "^23.13.2",
"jest": "^26.0.1",
"jest-tobetype": "^1.2.3",
"mediasoup": "3.11.26",
"mediasoup-client": "3.6.84",
"open-cli": "^6.0.1",
"prettier": "~2.5.0",
"tsc-watch": "^4.2.8",
"typescript": "4.9.5"
},
"peerDependencies": {
"mediasoup": "^3.0.0",
"mediasoup-client": "^3.0.0"
}
}