primitiv-ui 0.0.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,9 @@
1
+ # primitiv-ui (placeholder)
2
+
3
+ Reserves the unscoped npm name **`primitiv-ui`** — the package that will ship the
4
+ Primitiv design system CLI (command: `primitiv`). See
5
+ [`docs/rfcs/0005-primitiv-cli.md`](../../docs/rfcs/0005-primitiv-cli.md).
6
+
7
+ This is a placeholder that prints a "coming soon" notice. It will be replaced by
8
+ the real CLI build at a higher version. Publishing instructions live in
9
+ [`../README.md`](../README.md).
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env node
2
+ // Placeholder for the Primitiv design system CLI (command: `primitiv`).
3
+ // The real CLI is in development — see docs/rfcs/0005-primitiv-cli.md.
4
+ console.log(
5
+ [
6
+ "primitiv-ui — coming soon.",
7
+ "The Primitiv design system CLI is in development.",
8
+ "Headless components are published as @primitiv-ui/react (and /icons, /tokens).",
9
+ ].join("\n")
10
+ );
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "primitiv-ui",
3
+ "version": "0.0.1",
4
+ "description": "Primitiv design system CLI (placeholder; in development). Headless components ship as @primitiv-ui/react, /icons, /tokens.",
5
+ "bin": {
6
+ "primitiv": "bin/primitiv.js"
7
+ },
8
+ "files": [
9
+ "bin"
10
+ ],
11
+ "keywords": [
12
+ "primitiv",
13
+ "primitiv-ui",
14
+ "design-system",
15
+ "cli"
16
+ ],
17
+ "publishConfig": {
18
+ "access": "public"
19
+ }
20
+ }