make-sugarcube 0.0.6

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 +9 -0
  2. package/index.js +2 -0
  3. package/package.json +27 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # make-sugarcube
2
+
3
+ 🚧 Coming soon! 🚧
4
+
5
+ A CLI for scaffolding sugarcube applications. This package is currently in development.
6
+
7
+ ## Stay Tuned
8
+
9
+ Follow our progress on [GitHub](https://github.com/sugarcube-org)
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ import("@sugarcube-org/cli");
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "make-sugarcube",
3
+ "version": "0.0.6",
4
+ "private": false,
5
+ "description": "Public CLI entrypoint for sugarcube",
6
+ "bin": {
7
+ "make-sugarcube": "./index.js"
8
+ },
9
+ "author": "Mark Tomlinson",
10
+ "license": "AGPL-3.0",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/sugarcube-org/sugarcube"
14
+ },
15
+ "keywords": [
16
+ "cli",
17
+ "sugarcube",
18
+ "design-system",
19
+ "components",
20
+ "css",
21
+ "tokens"
22
+ ],
23
+ "type": "module",
24
+ "dependencies": {
25
+ "@sugarcube-org/cli": "^0.0.0-alpha.7"
26
+ }
27
+ }