-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 781 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 781 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
{
"name": "video-server",
"version": "2.0.0",
"description": "LAN üzerinden video streaming server",
"main": "server.js",
"bin": "server.js",
"scripts": {
"start": "node server.js",
"build": "pkg . --targets node18-win-x64 --output dist/video-server.exe"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^17.2.4",
"express": "^4.19.2",
"fluent-ffmpeg": "^2.1.3",
"iconv-lite": "^0.7.2",
"jsonwebtoken": "^9.0.2",
"qrcode-terminal": "^0.12.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"pkg": "^5.8.1"
},
"pkg": {
"scripts": "server.js",
"assets": [
"public/**/*"
],
"outputPath": "dist"
}
}