create-tinywidgets 0.1.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.
Files changed (3) hide show
  1. package/README.md +11 -0
  2. package/cli.js +4 -0
  3. package/package.json +27 -0
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # create-tinywidgets
2
+
3
+ CLI tool to scaffold a new TinyWidgets application.
4
+
5
+ ## Usage
6
+
7
+ ```bash
8
+ npm create tinywidgets
9
+ ```
10
+
11
+ Coming soon!
package/cli.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log('🧩 create-tinywidgets - Coming soon!');
4
+ console.log('This CLI will help you scaffold a new TinyWidgets app.');
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "create-tinywidgets",
3
+ "version": "0.1.0",
4
+ "author": "jamesgpearce",
5
+ "repository": "github:tinyplex/create-tinywidgets",
6
+ "license": "MIT",
7
+ "homepage": "https://tinywidgets.org",
8
+ "description": "The CLI to build a new app using TinyWidgets, a collection of tiny, reusable, UI components - wrapped in a helpful app layout with header, side bar, dark mode, and more.",
9
+ "keywords": [
10
+ "tiny",
11
+ "local-first",
12
+ "ui",
13
+ "components",
14
+ "styling",
15
+ "react"
16
+ ],
17
+ "type": "module",
18
+ "bin": {
19
+ "create-tinywidgets": "./cli.js"
20
+ },
21
+ "dependencies": {
22
+ "prompts": "^2.4.2"
23
+ },
24
+ "engines": {
25
+ "node": ">=18.0.0"
26
+ }
27
+ }