@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.
Files changed (2) hide show
  1. package/README.md +11 -2
  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: `react >= 18`, `react-dom >= 18`.
18
+ **Peer dependencies:** `react >= 18`, `react-dom >= 18`, `tailwindcss >= 4`
19
+
20
+ **Bundled dependencies:** `clsx`, `tailwind-merge`, `marked`
12
21
 
13
- Dependencies: `lucide-react` (default icon library, bundled externally).
22
+ **External dependency:** `lucide-react` (default icon library)
14
23
 
15
24
  ## Usage
16
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@particle-academy/react-fancy",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "React UI component library — React port of the fancy-flux Blade component library",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",