forked from Streampunk/beamcoder
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.48 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.48 KB
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
52
53
54
55
56
57
58
59
{
"name": "@roamhq/beamcoder",
"version": "0.8.4",
"description": "Node.js native bindings to FFmpeg.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"install": "echo Using prebuilt binary, use `npm run build` to compile locally",
"prebuild": "node ./scripts/install_ffmpeg.js",
"build": "node-gyp rebuild",
"make-prebuilt": "node ./scripts/make_prebuilt.js",
"test": "tape test/*.js",
"lint": "eslint **/*.js",
"lint-html": "eslint **/*.js -f html -o ./reports/lint-results.html",
"lint-fix": "eslint --fix **/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WonderInventions/beamcoder.git"
},
"bugs": {
"url": "https://github.com/WonderInventions/beamcoder/issues"
},
"homepage": "https://github.com/WonderInventions/beamcoder#readme",
"contributors": [
"Streampunk Media Ltd",
"Jack Duvall <jack@ro.am>"
],
"license": "GPL-3.0-or-later",
"keywords": [
"FFmpeg",
"libav",
"video",
"audio",
"sound",
"encode",
"decode",
"transcode",
"N-API"
],
"dependencies": {},
"devDependencies": {
"eslint": "^8.9.0",
"tape": "^5.5.2"
},
"optionalDependencies": {
"@roamhq/beamcoder-win32-x64": "0.8.1",
"@roamhq/beamcoder-linux-x64": "0.8.0",
"@roamhq/beamcoder-darwin-arm64": "0.8.3",
"@roamhq/beamcoder-darwin-x64": "0.8.3"
},
"files": [
"index.js",
"index.d.ts",
"bindings.js",
"beamstreams.js",
"types/"
]
}