-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1012 Bytes
/
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
{
"name": "typed_janus_js",
"version": "1.0.18",
"description": "scalable and battle tested wrapper around janusjs providing typed and promisified version of janusjs",
"typings": "dist",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"doc": "npx typedoc src/index.ts"
},
"keywords": [
"janusjs",
"webrtc",
"janus-gateway",
"videoroom",
"sip"
],
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"aigle": "1.14.1",
"lodash": "4.17.21",
"rxjs": "7.5.5",
"typedoc": "0.22.15",
"webrtc-adapter": "8.1.1"
},
"devDependencies": {
"@types/es6-promise": "3.3.0",
"@types/lodash": "4.14.182",
"typescript": "4.6.4"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"proseWrap": "preserve",
"printWidth": 80,
"semi": false,
"singleQuote": true
}
}