-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.35 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.35 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": "@solithix/optimize",
"version": "1.0.0",
"description": "Solithix Optimizers — Interactive CLI for optimizing GIFs, videos, and images for the web",
"type": "module",
"bin": {
"optimize": "./bin/optimize-media.js"
},
"main": "./dist/cli.js",
"files": [
"dist",
"bin",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node ./bin/optimize-media.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"media",
"optimize",
"ffmpeg",
"gif",
"video",
"image",
"webp",
"cli",
"solithix"
],
"author": "Solithix",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/solithix/optimize.git"
},
"homepage": "https://github.com/solithix/optimize#readme",
"bugs": {
"url": "https://github.com/solithix/optimize/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@inkjs/ui": "^2.0.0",
"chalk": "^5.3.0",
"fluent-ffmpeg": "^2.1.3",
"globby": "^14.0.0",
"ink": "^5.1.0",
"meow": "^13.0.0",
"react": "^18.3.1",
"sharp": "^0.33.0"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.24",
"@types/react": "^18.3.0",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=18"
}
}