image-convert-cli 1.1.4 → 1.1.6
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/LICENSE.md +21 -0
- package/README.md +2 -2
- package/dist/index.js +6 -1
- package/package.json +6 -1
package/LICENSE.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 lukenguyen-me
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
## Demo
|
|
8
8
|
|
|
9
|
-
https://github.com/user-attachments/assets/f3df2efc-5db7-4201-9092-1aa309880380
|
|
9
|
+
[](https://github.com/user-attachments/assets/f3df2efc-5db7-4201-9092-1aa309880380)
|
|
10
10
|
|
|
11
11
|
## Quick Start
|
|
12
12
|
|
|
@@ -45,7 +45,7 @@ bun install -g image-convert-cli
|
|
|
45
45
|
### From Source
|
|
46
46
|
|
|
47
47
|
```bash
|
|
48
|
-
git clone
|
|
48
|
+
git clone https://github.com/lukenguyen-me/image-convert-cli
|
|
49
49
|
cd image-convert-cli
|
|
50
50
|
npm install # or pnpm/yarn/bun install
|
|
51
51
|
npm link # or equivalent for your package manager
|
package/dist/index.js
CHANGED
|
@@ -8638,7 +8638,8 @@ Conversion settings:`);
|
|
|
8638
8638
|
// package.json
|
|
8639
8639
|
var package_default = {
|
|
8640
8640
|
name: "image-convert-cli",
|
|
8641
|
-
version: "1.1.
|
|
8641
|
+
version: "1.1.6",
|
|
8642
|
+
license: "MIT",
|
|
8642
8643
|
type: "module",
|
|
8643
8644
|
bin: {
|
|
8644
8645
|
imgc: "./dist/index.js"
|
|
@@ -8660,6 +8661,10 @@ var package_default = {
|
|
|
8660
8661
|
devDependencies: {
|
|
8661
8662
|
"@types/bun": "^1.3.8",
|
|
8662
8663
|
husky: "^9.1.7"
|
|
8664
|
+
},
|
|
8665
|
+
repository: {
|
|
8666
|
+
type: "git",
|
|
8667
|
+
url: "https://github.com/lukenguyen-me/image-convert-cli.git"
|
|
8663
8668
|
}
|
|
8664
8669
|
};
|
|
8665
8670
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "image-convert-cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
|
+
"license": "MIT",
|
|
4
5
|
"type": "module",
|
|
5
6
|
"bin": {
|
|
6
7
|
"imgc": "./dist/index.js"
|
|
@@ -22,5 +23,9 @@
|
|
|
22
23
|
"devDependencies": {
|
|
23
24
|
"@types/bun": "^1.3.8",
|
|
24
25
|
"husky": "^9.1.7"
|
|
26
|
+
},
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "https://github.com/lukenguyen-me/image-convert-cli.git"
|
|
25
30
|
}
|
|
26
31
|
}
|