@vibeflow-tools/cli 0.1.1 → 0.2.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/dist/overlay.css CHANGED
@@ -139,6 +139,19 @@
139
139
  border-color: #3b82f6;
140
140
  }
141
141
 
142
+ .vibeflow-popover input[type="text"].input-error {
143
+ border-color: #ef4444;
144
+ outline: 2px solid rgba(239, 68, 68, 0.35);
145
+ outline-offset: 1px;
146
+ animation: input-shake 0.28s ease;
147
+ }
148
+
149
+ @keyframes input-shake {
150
+ 0%, 100% { transform: translateX(0); }
151
+ 25% { transform: translateX(-4px); }
152
+ 75% { transform: translateX(4px); }
153
+ }
154
+
142
155
  .vibeflow-popover input[type="text"]::placeholder { color: #64748b; }
143
156
 
144
157
  .vibeflow-popover select {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibeflow-tools/cli",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "description": "Vibeflow CLI for frontend prototyping with LLM assistance — review, annotate, and iterate on HTML prototypes",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Tomislav Zorcec <zorcec@gmail.com>",
@@ -21,7 +21,8 @@
21
21
  "README.md"
22
22
  ],
23
23
  "bin": {
24
- "vibeflow": "./dist/cli/index.js"
24
+ "vibeflow": "./dist/cli/index.js",
25
+ "vf": "./dist/cli/index.js"
25
26
  },
26
27
  "scripts": {
27
28
  "prebuild": "node scripts/gen-overlay-css.mjs && mkdir -p dist/client && node scripts/gen-overlay-bundle.mjs && node scripts/gen-kanban-css.mjs",
@@ -34,6 +35,9 @@
34
35
  "test:browser": "vitest run --config vitest.pw.config.ts",
35
36
  "lint": "tsc --noEmit",
36
37
  "prepublishOnly": "npm run build",
38
+ "version:patch": "npm version patch --no-git-tag-version",
39
+ "version:minor": "npm version minor --no-git-tag-version",
40
+ "version:major": "npm version major --no-git-tag-version",
37
41
  "serve:designs": "node dist/cli/index.js serve ../../docs/ --port 3701"
38
42
  },
39
43
  "keywords": [
@@ -65,18 +69,19 @@
65
69
  "express": "^4.21.0",
66
70
  "html2canvas": "^1.4.1",
67
71
  "open": "^10.1.0",
72
+ "posthog-node": "^5.30.4",
68
73
  "ws": "^8.18.0",
69
74
  "zod": "^4.3.6"
70
75
  },
71
76
  "devDependencies": {
72
77
  "@playwright/test": "^1.58.2",
73
- "@vibeflow-tools/shared": "workspace:*",
74
- "@vibeflow-tools/ui": "workspace:*",
75
78
  "@types/express": "^5.0.0",
76
79
  "@types/node": "^22.0.0",
77
80
  "@types/react": "^18.3.28",
78
81
  "@types/react-dom": "^18.3.7",
79
82
  "@types/ws": "^8.5.0",
83
+ "@vibeflow-tools/shared": "workspace:*",
84
+ "@vibeflow-tools/ui": "workspace:*",
80
85
  "@vitest/coverage-v8": "^3.0.0",
81
86
  "autoprefixer": "^10.4.27",
82
87
  "jsdom": "^29.0.0",