cmdzero 0.5.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 +63 -0
- package/bin/cmdzero.js +13 -0
- package/overlay/overlay.js +1284 -0
- package/package.json +35 -0
- package/src/resolver.js +694 -0
- package/src/router.js +276 -0
- package/src/server.js +316 -0
- package/src/telemetry.js +97 -0
package/package.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cmdzero",
|
|
3
|
+
"version": "0.5.0",
|
|
4
|
+
"description": "Tweak your UI live in the browser and write the changes straight to source. Copy and Tailwind edits cost zero tokens; everything else routes to a right-sized model via headless claude.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"cmdzero": "bin/cmdzero.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"start": "node bin/cmdzero.js"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"bin",
|
|
15
|
+
"src",
|
|
16
|
+
"overlay",
|
|
17
|
+
"README.md"
|
|
18
|
+
],
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">=18"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"@babel/parser": "^7.26.0"
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"devtools",
|
|
27
|
+
"tailwind",
|
|
28
|
+
"visual-editor",
|
|
29
|
+
"claude",
|
|
30
|
+
"ai",
|
|
31
|
+
"nextjs",
|
|
32
|
+
"vite",
|
|
33
|
+
"react"
|
|
34
|
+
]
|
|
35
|
+
}
|