-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.18 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "extra-ffmpeg",
"version": "4.0.9",
"description": "Decode, encode, transcode, mux, demux, stream, filter, and play media through machine (via \"ffmpeg\").",
"main": "index.js",
"module": "index.mjs",
"sideEffects": false,
"exports": {
"require": "./index.js",
"import": "./index.mjs"
},
"scripts": {
"test": "exit",
"build": "node ./build",
"deploy": "node ./build deploy",
"install": "node install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodef/extra-ffmpeg.git"
},
"keywords": [
"extra",
"ffmpeg",
"decode",
"encode",
"transcode",
"mux",
"demux",
"stream",
"filter",
"play",
"media",
"multimedia",
"framework"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/nodef/extra-ffmpeg/issues"
},
"homepage": "https://github.com/nodef/extra-ffmpeg#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/node": "^20.16.10",
"extra-build": "^2.3.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^4.2.3"
}
}