@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beaket/ui",
3
- "version": "1.0.0",
3
+ "version": "1.1.1",
4
4
  "description": "CLI tool for adding Beaket UI components to your project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -7,8 +7,6 @@ export interface ComponentDefinition {
7
7
  }
8
8
 
9
9
  export interface Registry {
10
- $schema?: string;
11
- name: string;
12
10
  components: ComponentDefinition[];
13
11
  }
14
12