-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 743 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 743 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
{
"name": "video-stream-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node src/server.js"
},
"pnpm": {
"neverBuiltDependencies": [
"sharp"
],
"peerDependencyRules": {
"ignoreMissing": [
"sharp"
]
},
"patchedDependencies": {
"sharp@0.32.6": "patches/sharp@0.32.6.patch"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.20.0",
"dependencies": {
"@xenova/transformers": "^2.17.2",
"fluent-ffmpeg": "^2.1.3",
"onnxruntime-node": "^1.23.2",
"sharp": "^0.34.5",
"wavefile": "^11.0.0"
}
}