-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 761 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 761 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
{
"name": "streamto",
"version": "1.0.0",
"description": "StreamTo - Lightweight Node.js multi-RTMP streamer for Windows (UVC devices)",
"main": "main.js",
"scripts": {
"start": "node main.js",
"setup": "node scripts/download-ffmpeg.js",
"build": "node scripts/build-exe.js",
"postinstall": "node scripts/download-ffmpeg.js"
},
"pkg": {
"assets": [
"frontend/**/*",
"ffmpeg/**/*"
],
"outputPath": "dist"
},
"bin": { "streamto": "main.js" },
"author": {
"name": "Positive Developer",
"url": "https://github.com/johnbenet009",
"phone": "+2349014532386"
},
"dependencies": {
"express": "^4.18.2",
"ws": "^8.13.0",
"body-parser": "^1.20.2",
"fluent-ffmpeg": "^2.1.2"
}
}