@beaket/ui 1.0.0 → 1.1.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 +24 -0
- package/package.json +1 -1
- package/src/utils/registry.ts +0 -2
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# @beaket/ui
|
|
2
|
+
|
|
3
|
+
CLI for adding Beaket UI components to your project.
|
|
4
|
+
|
|
5
|
+
**Documentation:** https://beaket.github.io/ui/
|
|
6
|
+
|
|
7
|
+
## Usage
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npx @beaket/ui init
|
|
11
|
+
npx @beaket/ui add button
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Requirements
|
|
15
|
+
|
|
16
|
+
- React 18+
|
|
17
|
+
- Tailwind CSS
|
|
18
|
+
|
|
19
|
+
## Commands
|
|
20
|
+
|
|
21
|
+
| Command | Description |
|
|
22
|
+
| ----------------- | --------------------------- |
|
|
23
|
+
| `init` | Setup project configuration |
|
|
24
|
+
| `add <component>` | Add a component |
|
package/package.json
CHANGED