image-beautifier 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.
package/README.md CHANGED
@@ -4,6 +4,12 @@
4
4
 
5
5
  预览地址:[https://screenshot.shoteasy.fun/](https://screenshot.shoteasy.fun/)
6
6
 
7
+ ## 安装
8
+
9
+ ```bash
10
+ npm install image-beautifier
11
+ ```
12
+
7
13
  - 用于截图美化
8
14
  - 图片批注
9
15
  - 修改尺寸,预设各个社媒平台发布的尺寸模板
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "image-beautifier",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "description": "Used to beautify image share display, add beautiful background, rounded corners, shadows, etc...",
6
6
  "main": "src/index.js",
@@ -48,6 +48,14 @@
48
48
  "tailwindcss": "^3.4.4",
49
49
  "vite": "^5.3.1"
50
50
  },
51
+ "repository": {
52
+ "type": "git",
53
+ "url": "https://github.com/CH563/image-beautifier.git"
54
+ },
55
+ "bugs": {
56
+ "url": "https://github.com/CH563/image-beautifier/issues"
57
+ },
58
+ "homepage": "https://github.com/CH563/image-beautifier",
51
59
  "author": "Chenliwen",
52
60
  "license": "MIT"
53
61
  }
package/src/index.js CHANGED
@@ -1 +1 @@
1
- export { default as App } from 'App';
1
+ export { default as ImageBeautifier } from './App';