vibespot 1.6.5 → 1.8.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.
Files changed (40) hide show
  1. package/README.md +24 -3
  2. package/assets/whats-new.json +27 -0
  3. package/dist/index.js +579 -681
  4. package/dist/index.js.map +1 -1
  5. package/package.json +8 -5
  6. package/ui/chat.js +671 -9
  7. package/ui/dashboard.js +53 -12
  8. package/ui/docs/index.html +57 -2
  9. package/ui/email-preview.js +1 -5
  10. package/ui/escape-html.js +14 -0
  11. package/ui/field-editor.js +6 -12
  12. package/ui/field-save.js +82 -0
  13. package/ui/index.html +10 -4
  14. package/ui/inline-edit.js +116 -570
  15. package/ui/plan.js +22 -13
  16. package/ui/preview-agent.js +1050 -0
  17. package/ui/preview.js +248 -265
  18. package/ui/section-controls.js +16 -622
  19. package/ui/setup.js +73 -20
  20. package/ui/styles.css +424 -0
  21. package/ui/upload-panel.js +7 -8
  22. package/ui/whats-new.js +249 -0
  23. package/assets/readme/00-hero-banner.png +0 -0
  24. package/assets/readme/00-hero-banner.svg +0 -59
  25. package/assets/readme/01-vibe-coding-hero.png +0 -0
  26. package/assets/readme/02-plan-mode.png +0 -0
  27. package/assets/readme/03-figma-import.png +0 -0
  28. package/assets/readme/04-multi-page-sites.png +0 -0
  29. package/assets/readme/05-inline-wysiwyg.png +0 -0
  30. package/assets/readme/06-hubspot-upload.png +0 -0
  31. package/ui/docs/screenshots/brand-kit-preview.png +0 -0
  32. package/ui/docs/screenshots/content-type-dropdown.png +0 -0
  33. package/ui/docs/screenshots/editor-full-layout.png +0 -0
  34. package/ui/docs/screenshots/inline-wysiwyg-editing.png +0 -0
  35. package/ui/docs/screenshots/module-overview-slideout.png +0 -0
  36. package/ui/docs/screenshots/multi-page-tree.png +0 -0
  37. package/ui/docs/screenshots/onboarding-walkthrough.png +0 -0
  38. package/ui/docs/screenshots/split-pane-view.png +0 -0
  39. package/ui/docs/screenshots/visual-controls-toolbar.png +0 -0
  40. package/ui/docs/screenshots/workspace-tabs.png +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibespot",
3
- "version": "1.6.5",
3
+ "version": "1.8.0",
4
4
  "description": "AI-powered HubSpot CMS landing page builder — vibe coding & React converter",
5
5
  "type": "module",
6
6
  "bin": {
@@ -11,12 +11,15 @@
11
11
  "dist",
12
12
  "bin",
13
13
  "assets",
14
+ "!assets/readme/**",
14
15
  "ui",
16
+ "!ui/docs/screenshots/**",
15
17
  "starters"
16
18
  ],
17
19
  "scripts": {
18
20
  "dev": "tsx src/index.ts",
19
- "build": "tsup",
21
+ "build": "npm run whatsnew:gen && tsup",
22
+ "whatsnew:gen": "tsx scripts/gen-whats-new.ts",
20
23
  "typecheck": "tsc --noEmit",
21
24
  "test": "vitest run",
22
25
  "test:watch": "vitest",
@@ -27,13 +30,12 @@
27
30
  "prompts:seed": "tsx scripts/sync-prompts.ts --from-local",
28
31
  "prompts:push": "tsx scripts/sync-prompts.ts --push",
29
32
  "prepublishOnly": "npm run build",
30
- "contact-monitor": "tsx scripts/contact-monitor.ts",
31
33
  "docker:publish": "scripts/docker-publish.sh",
32
34
  "docker:publish:multi": "scripts/docker-publish.sh --multi-arch",
33
35
  "docker:smoke": "scripts/docker-publish.sh --smoke --dry-run"
34
36
  },
35
37
  "dependencies": {
36
- "@anthropic-ai/sdk": "^0.99.0",
38
+ "@anthropic-ai/sdk": "^0.104.1",
37
39
  "@clack/prompts": "^1.3.0",
38
40
  "@codemirror/lang-css": "^6.3.1",
39
41
  "@codemirror/lang-html": "^6.4.11",
@@ -43,7 +45,7 @@
43
45
  "busboy": "^1.6.0",
44
46
  "chalk": "^5.4.1",
45
47
  "codemirror": "^6.0.2",
46
- "commander": "^14.0.3",
48
+ "commander": "^15.0.0",
47
49
  "execa": "^9.6.1",
48
50
  "jszip": "^3.10.1",
49
51
  "mammoth": "^1.11.0",
@@ -55,6 +57,7 @@
55
57
  "@types/busboy": "^1.5.4",
56
58
  "@types/node": "^25.6.0",
57
59
  "@types/ws": "^8.18.1",
60
+ "jsdom": "^29.1.1",
58
61
  "tsup": "^8.4.0",
59
62
  "tsx": "^4.19.0",
60
63
  "typescript": "^6.0.3",