-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.5 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
{
"name": "janus-pp-rec-js",
"version": "1.0.0",
"description": "a simple js wrapper around janus-pp-rec which is used to convert mjr files to one of playable media format",
"repository": {
"type": "git",
"url": "git+https://github.com/flutterjanus/janus-pp-rec-js.git"
},
"bugs": {
"url": "https://github.com/flutterjanus/janus-pp-rec-js/issues"
},
"type": "module",
"homepage": "https://github.com/flutterjanus/janus-pp-rec-js#readme",
"typings": "dist",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"doc": "npx typedoc src/index.ts"
},
"keywords": [
"janusjs",
"webrtc",
"janus-gateway",
"videoroom",
"sip"
],
"files": [
"dist/*",
"bin"
],
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"aigle": "1.14.1",
"child_process": "^1.0.2",
"fluent-ffmpeg": "^2.1.3",
"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",
"@types/node": "^20.14.7",
"typescript": "^5.5.2"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"proseWrap": "preserve",
"printWidth": 80,
"semi": false,
"singleQuote": true
}
}