image-video-optimizer 2.0.2 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +17 -11
package/package.json
CHANGED
|
@@ -1,37 +1,43 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "image-video-optimizer",
|
|
3
|
-
"version": "2.0.
|
|
4
|
-
"description": "CLI tool to optimize and
|
|
3
|
+
"version": "2.0.3",
|
|
4
|
+
"description": "A CLI tool to optimize images and videos by resizing and converting them according to configuration",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"image-video-optimizer": "./bin/cli.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
|
-
"
|
|
11
|
-
"
|
|
10
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
11
|
+
"start": "node bin/cli.js"
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
14
14
|
"image",
|
|
15
15
|
"video",
|
|
16
16
|
"optimizer",
|
|
17
|
-
"
|
|
18
|
-
"
|
|
17
|
+
"resize",
|
|
18
|
+
"convert",
|
|
19
|
+
"batch",
|
|
19
20
|
"cli"
|
|
20
21
|
],
|
|
21
22
|
"author": "",
|
|
22
23
|
"license": "MIT",
|
|
23
24
|
"dependencies": {
|
|
24
|
-
"
|
|
25
|
+
"sharp": "^0.33.0",
|
|
26
|
+
"fluent-ffmpeg": "^2.1.3",
|
|
27
|
+
"commander": "^11.1.0",
|
|
25
28
|
"chalk": "^5.3.0",
|
|
26
|
-
"
|
|
27
|
-
|
|
29
|
+
"ora": "^8.0.1"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"ffmpeg-static": "^5.2.0",
|
|
33
|
+
"ffprobe-static": "^3.1.0"
|
|
28
34
|
},
|
|
29
|
-
"devDependencies": {},
|
|
30
35
|
"engines": {
|
|
31
36
|
"node": ">=14.0.0"
|
|
32
37
|
},
|
|
38
|
+
"preferGlobal": true,
|
|
33
39
|
"repository": {
|
|
34
40
|
"type": "git",
|
|
35
|
-
"url": ""
|
|
41
|
+
"url": "https://github.com/yourusername/image-video-optimizer.git"
|
|
36
42
|
}
|
|
37
43
|
}
|