minify-pic-cli 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/README.md +3 -10
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -17,10 +17,10 @@
17
17
 
18
18
  ```bash
19
19
  # 使用 pnpm 安装
20
- pnpm install -g tinypic-cli
20
+ pnpm install -g minify-pic-cli
21
21
 
22
22
  # 或使用 npm
23
- npm install -g tinypic-cli
23
+ npm install -g minify-pic-cli
24
24
  ```
25
25
 
26
26
  ## 使用方法
@@ -134,22 +134,15 @@ pnpm install
134
134
 
135
135
  # 运行开发版本
136
136
  node index.js
137
-
138
- # 构建
139
- pnpm run build
140
137
  ```
141
138
 
142
139
  ## 许可证
143
140
 
144
141
  ISC
145
142
 
146
- ## 贡献
147
-
148
- 欢迎提交 Issue 和 Pull Request!
149
-
150
143
  ## 更新日志
151
144
 
152
- ### v1.0.0
145
+ ### v1.0.1
153
146
  - 初始版本发布
154
147
  - 支持 PNG、JPEG、GIF 格式压缩
155
148
  - 命令行参数支持
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "minify-pic-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "一个简单易用的图片批量压缩命令行工具,支持 PNG、JPEG、GIF 格式,适合前端和设计师快速优化图片体积。",
5
5
  "main": "index.js",
6
6
  "bin": {
7
- "mpic": "./index.js"
7
+ "mpic": "index.js"
8
8
  },
9
9
  "scripts": {
10
10
  "build": "node ./index.js"