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.
- package/README.md +11 -0
- package/cli.js +4 -0
- package/package.json +27 -0
package/README.md
ADDED
package/cli.js
ADDED
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
|
+
}
|