-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 881 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 881 Bytes
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": "@magicfun1241/streamer",
"version": "1.0.5",
"description": "Streaming library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"start": "npm run build && node examples/rtmp"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MagicFun1241/streamer.git"
},
"keywords": [
"rtp",
"rtmp",
"streaming"
],
"author": "MagicFun1241",
"license": "MIT",
"bugs": {
"url": "https://github.com/MagicFun1241/streamer/issues"
},
"homepage": "https://github.com/MagicFun1241/streamer#readme",
"devDependencies": {
"@types/ffmpeg-static": "^3.0.0",
"@types/node": "^14.11.2",
"typescript": "^4.0.3"
},
"dependencies": {
"chalk": "^4.1.0",
"ffmpeg-static": "^4.2.7",
"nanoid": "^3.1.12",
"temp-dir": "^2.0.0"
}
}