react-scanner-ui 0.0.11 → 0.0.13
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 +43 -2
- package/docs/.vitepress/config.ts +1 -0
- package/docs/index.md +3 -0
- package/docs/public/favicon.ico +0 -0
- package/docs/public/logo.png +0 -0
- package/logo.png +0 -0
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -1,2 +1,43 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
<div align="center">
|
|
2
|
+
<img src="./logo.png" alt="React Scanner UI Logo" width="100" height="100">
|
|
3
|
+
|
|
4
|
+
# React Scanner UI
|
|
5
|
+
|
|
6
|
+
## Component scanner and visualization tool for React applications
|
|
7
|
+
</div>
|
|
8
|
+
|
|
9
|
+
[](https://badge.fury.io/js/react-scanner-ui)
|
|
10
|
+
[](https://github.com/vimalmunjani/react-scanner-ui/stargazers)
|
|
11
|
+
|
|
12
|
+
## 🚀 First Release - February 1st, 2025
|
|
13
|
+
|
|
14
|
+
The initial version of React Scanner UI is launching February 1st!
|
|
15
|
+
|
|
16
|
+
**Support the project:**
|
|
17
|
+
- ⭐ [Star on GitHub](https://github.com/vimalmunjani/react-scanner-ui)
|
|
18
|
+
- 💬 [Join Discussions](https://github.com/vimalmunjani/react-scanner-ui/discussions)
|
|
19
|
+
|
|
20
|
+
## Installation
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
yarn add react-scanner-ui
|
|
24
|
+
# or
|
|
25
|
+
npm install react-scanner-ui
|
|
26
|
+
# or
|
|
27
|
+
npx react-scanner-ui
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Usage
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
cd your-react-project
|
|
34
|
+
react-scanner-ui init
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Documentation
|
|
38
|
+
|
|
39
|
+
📖 [Full Documentation](https://vimalmunjani.github.io/react-scanner-ui/)
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
MIT © [Vimal Munjani](https://github.com/vimalmunjani)
|
package/docs/index.md
CHANGED
|
Binary file
|
|
Binary file
|
package/logo.png
ADDED
|
Binary file
|
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.13",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"react-scanner-ui": "dist/index.js"
|
|
@@ -10,6 +10,8 @@
|
|
|
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/",
|
|
14
|
+
"logo": "logo.png",
|
|
13
15
|
"author": "Vimal Munjani <vimal.j.munjani@gmail.com>",
|
|
14
16
|
"license": "MIT",
|
|
15
17
|
"publishConfig": {
|