-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "@ffmpeg-installer/ffmpeg",
"version": "1.1.0",
"main": "index.js",
"scripts": {
"lint": "jshint *.js",
"preversion": "npm run lint",
"types": "tsc",
"preupload": "npm run types",
"upload": "npm --userconfig=.npmrc publish --access public",
"test": "tsd"
},
"types": "types/index.d.ts",
"keywords": [
"ffmpeg",
"binary",
"installer",
"audio",
"sound"
],
"author": "Kristoffer Lundén <[email protected]>",
"license": "LGPL-2.1",
"description": "Platform independent binary installer of FFmpeg for node projects",
"optionalDependencies": {
"@ffmpeg-installer/darwin-arm64": "4.1.5",
"@ffmpeg-installer/darwin-x64": "4.1.0",
"@ffmpeg-installer/linux-arm": "4.1.3",
"@ffmpeg-installer/linux-arm64": "4.1.4",
"@ffmpeg-installer/linux-ia32": "4.1.0",
"@ffmpeg-installer/linux-x64": "4.1.0",
"@ffmpeg-installer/win32-ia32": "4.1.0",
"@ffmpeg-installer/win32-x64": "4.1.0"
},
"devDependencies": {
"jshint": "^2.9.3",
"tsd": "^0.14.0",
"typescript": "^4.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kribblo/node-ffmpeg-installer.git"
},
"bugs": {
"url": "https://github.com/kribblo/node-ffmpeg-installer/issues"
},
"homepage": "https://github.com/kribblo/node-ffmpeg-installer#readme"
}