@yunuenm23/react-file-uploader 0.1.1 → 0.1.2

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 +8 -0
  2. package/package.json +9 -1
package/README.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  Reusable React file uploader component without Ant Design or Next.js dependencies.
4
4
 
5
+ ## Documentation
6
+
7
+ - Live docs and playground: https://moncadayunuen.github.io/react_fileuploader/
8
+ - GitHub repository: https://github.com/moncadayunuen/react_fileuploader
9
+ - npm package: https://www.npmjs.com/package/@yunuenm23/react-file-uploader
10
+
5
11
  ## Install locally
6
12
 
7
13
  ```bash
@@ -17,6 +23,8 @@ npm run dev
17
23
 
18
24
  Open `http://127.0.0.1:5173/`.
19
25
 
26
+ Public docs: https://moncadayunuen.github.io/react_fileuploader/
27
+
20
28
  ## Publish package
21
29
 
22
30
  ```bash
package/package.json CHANGED
@@ -1,7 +1,15 @@
1
1
  {
2
2
  "name": "@yunuenm23/react-file-uploader",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Advanced React file uploader component with media previews, document downloads, and no UI framework dependency.",
5
+ "homepage": "https://moncadayunuen.github.io/react_fileuploader/",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/moncadayunuen/react_fileuploader.git"
9
+ },
10
+ "bugs": {
11
+ "url": "https://github.com/moncadayunuen/react_fileuploader/issues"
12
+ },
5
13
  "type": "module",
6
14
  "main": "./dist/index.cjs",
7
15
  "module": "./dist/index.js",