react-scanner-ui 0.0.11 → 0.0.12
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 +39 -2
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,2 +1,39 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
1
|
+
# React Scanner UI
|
|
2
|
+
|
|
3
|
+
> Component scanner and visualization tool for React applications
|
|
4
|
+
|
|
5
|
+
[](https://badge.fury.io/js/react-scanner-ui)
|
|
6
|
+
[](https://github.com/vimalmunjani/react-scanner-ui/stargazers)
|
|
7
|
+
|
|
8
|
+
## 🚀 First Release - February 1st, 2025
|
|
9
|
+
|
|
10
|
+
The initial version of React Scanner UI is launching February 1st!
|
|
11
|
+
|
|
12
|
+
**Support the project:**
|
|
13
|
+
- ⭐ [Star on GitHub](https://github.com/vimalmunjani/react-scanner-ui)
|
|
14
|
+
- 💬 [Join Discussions](https://github.com/vimalmunjani/react-scanner-ui/discussions)
|
|
15
|
+
|
|
16
|
+
## Installation
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
yarn add react-scanner-ui
|
|
20
|
+
# or
|
|
21
|
+
npm install react-scanner-ui
|
|
22
|
+
# or
|
|
23
|
+
npx react-scanner-ui
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Usage
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
cd your-react-project
|
|
30
|
+
react-scanner-ui init
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Documentation
|
|
34
|
+
|
|
35
|
+
📖 [Full Documentation](https://vimalmunjani.github.io/react-scanner-ui/)
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
MIT © [Vimal Munjani](https://github.com/vimalmunjani)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-scanner-ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.12",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"react-scanner-ui": "dist/index.js"
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "git+https://github.com/vimalmunjani/react-scanner-ui.git"
|
|
12
12
|
},
|
|
13
|
+
"homepage": "https://vimalmunjani.github.io/react-scanner-ui/",
|
|
13
14
|
"author": "Vimal Munjani <vimal.j.munjani@gmail.com>",
|
|
14
15
|
"license": "MIT",
|
|
15
16
|
"publishConfig": {
|