notionsoft-ui 1.0.1 → 1.0.2

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 +7 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -17,9 +17,15 @@ A **shadcn-style component installer** that copies React components directly int
17
17
  Inside your project:
18
18
 
19
19
  ```sh
20
- npx notionsoft-ui init
20
+ npm i notionsoft-ui
21
21
  ```
22
22
 
23
23
  ```sh
24
24
  npx notionsoft-ui init
25
25
  ```
26
+
27
+ Add component to your project:
28
+
29
+ ```sh
30
+ npx notionsoft-ui add button
31
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "notionsoft-ui",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "A React UI component installer (shadcn-style). Installs components directly into your project.",
5
5
  "bin": {
6
6
  "notionsoft-ui": "./cli/index.cjs"