create-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
+ # create-primitiv-ui (placeholder)
2
+
3
+ Reserves the unscoped npm name **`create-primitiv-ui`** — the package behind
4
+ `npm create primitiv-ui` / `pnpm create primitiv-ui`, which will run
5
+ `primitiv init`. See
6
+ [`docs/rfcs/0005-primitiv-cli.md`](../../docs/rfcs/0005-primitiv-cli.md).
7
+
8
+ This is a placeholder that prints a "coming soon" notice. Publishing
9
+ instructions live in [`../README.md`](../README.md).
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env node
2
+ // Placeholder for the Primitiv scaffold (`npm create primitiv-ui`).
3
+ // The real scaffold is in development — see docs/rfcs/0005-primitiv-cli.md.
4
+ console.log(
5
+ [
6
+ "create-primitiv-ui — coming soon.",
7
+ "The Primitiv project scaffold is in development.",
8
+ "It will run `primitiv init` to set up tokens, styles, and configuration.",
9
+ ].join("\n")
10
+ );
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "create-primitiv-ui",
3
+ "version": "0.0.1",
4
+ "description": "Scaffold a project with the Primitiv design system (placeholder; in development).",
5
+ "bin": {
6
+ "create-primitiv-ui": "bin/create-primitiv-ui.js"
7
+ },
8
+ "files": [
9
+ "bin"
10
+ ],
11
+ "keywords": [
12
+ "primitiv",
13
+ "primitiv-ui",
14
+ "design-system",
15
+ "create",
16
+ "cli"
17
+ ],
18
+ "publishConfig": {
19
+ "access": "public"
20
+ }
21
+ }