forked from incubated-geek-cc/FFmpegWasmLocalServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (35 loc) · 849 Bytes
/
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
{
"name": "FFmpegWasmLocalServer",
"version": "1.0.0",
"description": "Converts multimedia data such as audio and video files into other formats. Enables volume control, content filter etc. with ffmpeg wrapper library.",
"main": "server.js",
"scripts": {
"download": "node download-assets.js",
"prestart": "npm run download",
"start": "node server.js"
},
"keywords": [
"audio",
"encode",
"decode",
"ffmpeg",
"multimedia",
"binary",
"installer",
"sound",
"wasm"
],
"author": "geek_cc",
"license": "GPL",
"dependencies": {
"@ffmpeg/core": "^0.10.0",
"@ffmpeg/ffmpeg": "^0.11.6",
"compression": "^1.7.4",
"consolidate": "^0.16.0",
"express": "^4.18.2",
"mustache": "^4.2.0",
"openurl": "^1.1.1",
"path": "^0.12.7",
"tar": "^6.1.15"
}
}