-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "video-conference-stitcher",
"version": "0.1.3",
"description": "Combine separately recorded recordings from a video conference into a single video file.",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"example": "node lib/examples/simple.js",
"tsc": "tsc",
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dirvann/video-conference-stitcher.git"
},
"keywords": [
"rtp",
"webrtc",
"recording",
"nodejs",
"ffmpeg"
],
"author": "Dirk Vanbeveren",
"contributors": [
{
"name": "Dirk Vanbeveren",
"email": "[email protected]",
"url": ""
}
],
"license": "MIT",
"dependencies": {
"typescript": "^3.9.7"
},
"devDependencies": {
"@types/express": "^4.17.7",
"@types/node": "^14.0.27",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0"
}
}