@bodyhc/blazeui 0.1.3 → 0.1.5

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 +23 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -27,23 +27,37 @@ A beautiful, modern, and accessible component library for React built with Radix
27
27
 
28
28
  ### Installation
29
29
 
30
- 1. Clone the repository:
30
+ #### 1. NPM (Recommended)
31
+
32
+ Install the package:
31
33
  ```bash
32
- git clone https://github.com/yourusername/blazeui.git
33
- cd blazeui
34
+ npm install @bodyhc/blazeui
34
35
  ```
35
36
 
36
- 2. Install dependencies:
37
- ```bash
38
- npm install
37
+ **Usage:**
38
+ ```tsx
39
+ import { Button } from "@bodyhc/blazeui"
39
40
  ```
41
+ > [!IMPORTANT]
42
+ > Use `@bodyhc/blazeui` (no hyphen). Import directly from the root; do not use subpaths like `/components/ui/button`.
43
+
44
+
45
+ #### 2. Manual
46
+
47
+ For manual installation (copy/paste), see our [Installation Guide](https://blazeui.com/docs/installation?tab=manual).
48
+
49
+ ### Framework Guides
50
+
51
+ - [Vite Setup](https://blazeui.com/docs/installation?tab=npm-vite)
52
+ - [Next.js Setup](https://blazeui.com/docs/installation?tab=npm-next)
53
+
54
+ #### Peer Dependencies
40
55
 
41
- 3. Start the development server:
42
56
  ```bash
43
- npm run dev
57
+ npm install framer-motion lucide-react clsx tailwind-merge tailwindcss-animate
44
58
  ```
45
59
 
46
- 4. Open [http://localhost:5173](http://localhost:5173) in your browser.
60
+
47
61
 
48
62
  ## 📦 Available Components
49
63
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bodyhc/blazeui",
3
3
  "private": false,
4
- "version": "0.1.3",
4
+ "version": "0.1.5",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",