-
-
Notifications
You must be signed in to change notification settings - Fork 186
/
Copy pathpackage.json
70 lines (70 loc) · 1.73 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"private": true,
"name": "ffmpeg-static",
"version": "5.2.0",
"description": "ffmpeg & ffprobe binaries for macOS, Linux and Windows",
"workspaces": [
"packages/ffmpeg-static",
"packages/ffprobe-static"
],
"scripts": {
"test": "node test.js",
"lint": "eslint .",
"build": "./build-packages.js",
"prepublishOnly": "npm run lint && npm run build && npm install --workspaces && npm test"
},
"ffmpeg-static": {
"binary-path-env-var": "FFMPEG_BIN",
"binary-release-tag-env-var": "FFMPEG_BINARY_RELEASE",
"binary-release-tag": "b6.0",
"binaries-url-env-var": "FFMPEG_BINARIES_URL",
"executable-base-name": "ffmpeg"
},
"ffprobe-static": {
"binary-path-env-var": "FFPROBE_BIN",
"binary-release-tag-env-var": "FFPROBE_BINARY_RELEASE",
"binary-release-tag": "b6.0",
"binaries-url-env-var": "FFPROBE_BINARIES_URL",
"executable-base-name": "ffprobe"
},
"repository": {
"type": "git",
"url": "https://github.com/eugeneware/ffmpeg-static"
},
"keywords": [
"ffmpeg",
"ffprobe",
"static",
"library",
"binary",
"binaries",
"mac",
"linux",
"windows"
],
"authors": [
"Eugene Ware <[email protected]>",
"Jannis R <[email protected]>"
],
"contributors": [
"Thefrank (https://github.com/Thefrank)",
"Emil Sivervik <[email protected]>"
],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/eugeneware/ffmpeg-static/issues"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@derhuerst/http-basic": "^8.2.0",
"env-paths": "^2.2.0",
"https-proxy-agent": "^5.0.0",
"progress": "^2.0.3"
},
"devDependencies": {
"any-shell-escape": "^0.1.1",
"eslint": "^8.6.0"
}
}