zyncat-ui 0.12.0
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 +21 -0
- package/dist/cli.js +1809 -0
- package/package.json +48 -0
package/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# zyncat-ui
|
|
2
|
+
|
|
3
|
+
The setup CLI for [`@zyncat/ui`](https://www.npmjs.com/package/@zyncat/ui) - a premium React 19
|
|
4
|
+
design system.
|
|
5
|
+
|
|
6
|
+
```bash
|
|
7
|
+
pnpm dlx zyncat-ui init
|
|
8
|
+
# or: npx zyncat-ui init · yarn dlx zyncat-ui init · bunx zyncat-ui init
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Run it inside a React project. One command installs `@zyncat/ui` (and React 19 if the project
|
|
12
|
+
needs it), imports the base stylesheet at your app root, installs the agent skill into
|
|
13
|
+
`.claude/skills/`, registers the MCP server in `.mcp.json`, and scaffolds a typed
|
|
14
|
+
`zyncat.theme.ts`. Re-run it after upgrading `@zyncat/ui` to refresh everything.
|
|
15
|
+
|
|
16
|
+
This package is where the CLI lives, and it holds the unscoped name so the command works before
|
|
17
|
+
`@zyncat/ui` is installed. It ships one bundled file and declares zero runtime dependencies - the
|
|
18
|
+
terminal UI is inlined at build time. `@zyncat/ui` mirrors the same bundle as its own `zyncat-ui`
|
|
19
|
+
bin, so after install `pnpm exec zyncat-ui init` runs the version-matched copy.
|
|
20
|
+
|
|
21
|
+
Docs: [ui.zyncat.app](https://ui.zyncat.app).
|