image-convert-cli 1.1.4 → 1.1.5
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/README.md +2 -2
- package/dist/index.js +5 -1
- package/package.json +5 -1
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,7 @@ 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.5",
|
|
8642
8642
|
type: "module",
|
|
8643
8643
|
bin: {
|
|
8644
8644
|
imgc: "./dist/index.js"
|
|
@@ -8660,6 +8660,10 @@ var package_default = {
|
|
|
8660
8660
|
devDependencies: {
|
|
8661
8661
|
"@types/bun": "^1.3.8",
|
|
8662
8662
|
husky: "^9.1.7"
|
|
8663
|
+
},
|
|
8664
|
+
repository: {
|
|
8665
|
+
type: "git",
|
|
8666
|
+
url: "https://github.com/lukenguyen-me/image-convert-cli.git"
|
|
8663
8667
|
}
|
|
8664
8668
|
};
|
|
8665
8669
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "image-convert-cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"imgc": "./dist/index.js"
|
|
@@ -22,5 +22,9 @@
|
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@types/bun": "^1.3.8",
|
|
24
24
|
"husky": "^9.1.7"
|
|
25
|
+
},
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://github.com/lukenguyen-me/image-convert-cli.git"
|
|
25
29
|
}
|
|
26
30
|
}
|