@dalexto/lexsys 0.0.2 → 0.0.4
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 +8 -8
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# lexsys
|
|
1
|
+
# @dalexto/lexsys
|
|
2
2
|
|
|
3
3
|
**Audience:** Users and contributors
|
|
4
4
|
**Type:** Package reference
|
|
@@ -10,30 +10,30 @@ Entry point for the [Lexsys](https://github.com/DaLexto/lexsys-ui) CLI — regis
|
|
|
10
10
|
## Usage
|
|
11
11
|
|
|
12
12
|
```bash
|
|
13
|
-
npx lexsys@latest init
|
|
13
|
+
npx @dalexto/lexsys@latest init
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
Scaffold a new project:
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
-
npx lexsys@latest create vite my-app
|
|
20
|
-
npx lexsys@latest create next my-app
|
|
19
|
+
npx @dalexto/lexsys@latest create vite my-app
|
|
20
|
+
npx @dalexto/lexsys@latest create next my-app
|
|
21
21
|
|
|
22
22
|
# or run without arguments for guided setup
|
|
23
|
-
npx lexsys@latest create
|
|
23
|
+
npx @dalexto/lexsys@latest create
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
Add components:
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
|
-
npx lexsys@latest add button
|
|
30
|
-
npx lexsys@latest add button dialog toast
|
|
29
|
+
npx @dalexto/lexsys@latest add button
|
|
30
|
+
npx @dalexto/lexsys@latest add button dialog toast
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
All commands:
|
|
34
34
|
|
|
35
35
|
```bash
|
|
36
|
-
npx lexsys@latest --help
|
|
36
|
+
npx @dalexto/lexsys@latest --help
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dalexto/lexsys",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Registry-first React UI framework — run `npx @dalexto/lexsys@latest init` to get started",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -28,6 +28,6 @@
|
|
|
28
28
|
"node": ">=24 <25"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@dalexto/lexsys-cli": "0.0.
|
|
31
|
+
"@dalexto/lexsys-cli": "0.0.4"
|
|
32
32
|
}
|
|
33
33
|
}
|