-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.6 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.6 KB
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
{
"name": "typed_janus_js",
"version": "1.2.1",
"description": "scalable and battle tested wrapper around janusjs providing typed and promisified version of janusjs",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/janus.global.js",
"typings": "dist/index.d.ts",
"exports": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"default": "./dist/index.esm.js"
},
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"update": "./scripts/update_janus_js.sh",
"format": "npx prettier --write .",
"build:rollup": "rollup -c",
"build": "rimraf dist && tsc && npm run build:rollup",
"doc": "npx typedoc src/index.ts"
},
"keywords": [
"janusjs",
"webrtc",
"janus-gateway",
"videoroom",
"sip"
],
"author": "shivanshtalwar0@gmail.com",
"license": "ISC",
"dependencies": {
"aigle": "1.14.1",
"lodash": "4.17.21",
"rxjs": "7.8.2",
"typedoc": "0.28.14",
"webrtc-adapter": "9.0.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"rimraf": "^6.1.0",
"rollup": "^4.53.2",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "5.9.3"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"proseWrap": "preserve",
"printWidth": 80,
"semi": false,
"singleQuote": true
}
}