-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.49 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.49 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
60
61
62
63
64
65
{
"name": "@w3vish/ffmpeg-installer",
"version": "2.2.1",
"type": "module",
"description": "A fast and lightweight cross-platform FFmpeg & FFprobe binary installer for Node.js, supporting Linux, macOS, and Windows.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.js"
},
"scripts": {
"build": "rm -rf dist && tsc --project tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"bin": {
"ffmpeg-installer": "dist/installer.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"ffmpeg",
"ffprobe",
"ffmpeg installer",
"ffmpeg binary",
"static ffmpeg",
"cross-platform",
"nodejs",
"media processing",
"video encoding",
"audio encoding",
"video converter",
"ffmpeg npm"
],
"author": "w3vish (https://github.com/w3vish)",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/w3vish/ffmpeg-installer.git"
},
"bugs": {
"url": "https://github.com/w3vish/ffmpeg-installer/issues"
},
"homepage": "https://github.com/w3vish/ffmpeg-installer#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@types/node": "^20.17.24",
"extract-zip": "^2.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"dependencies": {
"axios": "^1.8.4",
"readline": "^1.3.0"
}
}