@particle-academy/react-fancy 1.3.0 → 1.3.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 +11 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,12 +5,21 @@ React UI component library — the React port of the `fancy-flux` Blade/Livewire
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
+
# npm
|
|
9
|
+
npm install @particle-academy/react-fancy
|
|
10
|
+
|
|
11
|
+
# pnpm
|
|
8
12
|
pnpm add @particle-academy/react-fancy
|
|
13
|
+
|
|
14
|
+
# yarn
|
|
15
|
+
yarn add @particle-academy/react-fancy
|
|
9
16
|
```
|
|
10
17
|
|
|
11
|
-
Peer dependencies
|
|
18
|
+
**Peer dependencies:** `react >= 18`, `react-dom >= 18`, `tailwindcss >= 4`
|
|
19
|
+
|
|
20
|
+
**Bundled dependencies:** `clsx`, `tailwind-merge`, `marked`
|
|
12
21
|
|
|
13
|
-
|
|
22
|
+
**External dependency:** `lucide-react` (default icon library)
|
|
14
23
|
|
|
15
24
|
## Usage
|
|
16
25
|
|
package/package.json
CHANGED