@alltuner/vibetuner 6.4.0 → 8.0.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 (2) hide show
  1. package/README.md +4 -6
  2. package/package.json +2 -4
package/README.md CHANGED
@@ -13,7 +13,7 @@ This package (`@alltuner/vibetuner`) is the JavaScript component that provides:
13
13
 
14
14
  - **Tailwind CSS 4**: Utility-first CSS framework
15
15
  - **DaisyUI**: Beautiful component library for Tailwind
16
- - **HTMX 2**: Dynamic HTML without complex JavaScript
16
+ - **HTMX 4**: Dynamic HTML without complex JavaScript
17
17
  - **Build tools**: CLI tools for asset compilation
18
18
 
19
19
  **This package is designed to be used within projects generated by the Vibetuner scaffolding
@@ -53,9 +53,7 @@ bun dev # Start frontend asset building with hot reload
53
53
 
54
54
  ### Interactivity
55
55
 
56
- - **HTMX** (2.0+): High-power tools for HTML
57
- - **htmx-ext-preload**: Preload extension for faster navigation
58
- - **htmx-ext-sse**: Server-sent events extension for real-time updates
56
+ - **HTMX** (4.0+): High-power tools for HTML with native SSE support
59
57
 
60
58
  ## Usage in Generated Projects
61
59
 
@@ -80,8 +78,8 @@ Vibetuner uses HTMX for dynamic, reactive interfaces without complex JavaScript:
80
78
  <button type="submit">Submit</button>
81
79
  </form>
82
80
 
83
- <!-- Real-time updates -->
84
- <div hx-ext="sse" sse-connect="/events" sse-swap="message">
81
+ <!-- Real-time updates (native SSE in htmx v4) -->
82
+ <div sse-connect="/events" sse-swap="message">
85
83
  Updates will appear here
86
84
  </div>
87
85
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alltuner/vibetuner",
3
- "version": "6.4.0",
3
+ "version": "8.0.0",
4
4
  "description": "Blessed JavaScript/frontend build dependencies for production-ready Vibetuner projects",
5
5
  "keywords": [
6
6
  "tailwindcss",
@@ -27,9 +27,7 @@
27
27
  "@tailwindcss/cli": "^4.1.18",
28
28
  "@tailwindcss/typography": "^0.5.19",
29
29
  "daisyui": "^5.5.18",
30
- "htmx.org": "2.0.8",
31
- "htmx-ext-preload": "^2.1.2",
32
- "htmx-ext-sse": "^2.2.4"
30
+ "htmx.org": "4.0.0-alpha6"
33
31
  },
34
32
  "publishConfig": {
35
33
  "access": "public"