@zvada/cr8 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.
Files changed (3) hide show
  1. package/README.md +5 -0
  2. package/bin/cr8.mjs +2 -0
  3. package/package.json +17 -0
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # CR8
2
+
3
+ A local-first design canvas and flows for people and their agents. This version only holds the name; the first release follows.
4
+
5
+ Adam Zvada
package/bin/cr8.mjs ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ console.log("CR8 is on its way: a local-first design canvas and flows for people and their agents. This version only holds the name.");
package/package.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@zvada/cr8",
3
+ "version": "0.0.1",
4
+ "description": "CR8: a local-first design canvas and flows for people and their agents. This version only holds the name; the first release follows.",
5
+ "author": "Adam Zvada",
6
+ "license": "UNLICENSED",
7
+ "bin": {
8
+ "cr8": "bin/cr8.mjs"
9
+ },
10
+ "files": [
11
+ "bin/",
12
+ "README.md"
13
+ ],
14
+ "engines": {
15
+ "node": ">=20.19"
16
+ }
17
+ }