@dalexto/lexsys 0.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.
- package/LICENSE +21 -0
- package/README.md +67 -0
- package/bin.js +3 -0
- package/package.json +33 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 LexSys
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
# lexsys
|
|
2
|
+
|
|
3
|
+
**Audience:** Users and contributors
|
|
4
|
+
**Type:** Package reference
|
|
5
|
+
|
|
6
|
+
Entry point for the [Lexsys](https://github.com/DaLexto/lexsys-ui) CLI — registry-first React UI framework.
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## Usage
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
npx lexsys@latest init
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
Scaffold a new project:
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
npx lexsys@latest create vite my-app
|
|
20
|
+
npx lexsys@latest create next my-app
|
|
21
|
+
|
|
22
|
+
# or run without arguments for guided setup
|
|
23
|
+
npx lexsys@latest create
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Add components:
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
npx lexsys@latest add button
|
|
30
|
+
npx lexsys@latest add button dialog toast
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
All commands:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
npx lexsys@latest --help
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## All commands
|
|
42
|
+
|
|
43
|
+
| Command | Alias | Description |
|
|
44
|
+
| ----------- | -------- | ------------------------------------------------- |
|
|
45
|
+
| `init` | `create` | Initialize Lexsys or scaffold a framework starter |
|
|
46
|
+
| `add` | `a` | Install components into your project |
|
|
47
|
+
| `update` | `up` | Update installed components |
|
|
48
|
+
| `list` | `ls` | List available registry items |
|
|
49
|
+
| `status` | `st` | Show installed component status |
|
|
50
|
+
| `uninstall` | `rm` | Remove installed components |
|
|
51
|
+
| `doctor` | `dr` | Check local project setup |
|
|
52
|
+
| `registry` | `reg` | Inspect registry source and manifest |
|
|
53
|
+
| `config` | `cfg` | Print or update Lexsys config |
|
|
54
|
+
| `version` | | Print CLI version |
|
|
55
|
+
| `help` | | Show help |
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## How it works
|
|
60
|
+
|
|
61
|
+
This package is a thin entry point. All logic lives in [`@dalexto/lexsys-cli`](../cli/README.md).
|
|
62
|
+
|
|
63
|
+
## Links
|
|
64
|
+
|
|
65
|
+
- [Full documentation](../../docs/INDEX.md)
|
|
66
|
+
- [CLI reference](../../docs/reference/cli/CLI.md)
|
|
67
|
+
- [Registry](../../docs/reference/registry/REGISTRY.md)
|
package/bin.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dalexto/lexsys",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Registry-first React UI framework — run `npx @dalexto/lexsys@latest init` to get started",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "DaLexto",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/DaLexto/lexsys-ui.git",
|
|
11
|
+
"directory": "packages/entry"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/DaLexto/lexsys-ui/issues"
|
|
15
|
+
},
|
|
16
|
+
"homepage": "https://github.com/DaLexto/lexsys-ui#readme",
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public"
|
|
19
|
+
},
|
|
20
|
+
"bin": {
|
|
21
|
+
"lexsys": "./bin.js"
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"bin.js",
|
|
25
|
+
"README.md"
|
|
26
|
+
],
|
|
27
|
+
"engines": {
|
|
28
|
+
"node": ">=24 <25"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@dalexto/lexsys-cli": "0.0.2"
|
|
32
|
+
}
|
|
33
|
+
}
|