@alltuner/vibetuner 2.10.1 → 2.15.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 (2) hide show
  1. package/README.md +18 -10
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,19 +1,23 @@
1
1
  # @alltuner/vibetuner
2
2
 
3
- **Blessed JavaScript/frontend build dependencies for Vibetuner projects**
3
+ Blessed JavaScript/frontend build dependencies for Vibetuner projects
4
4
 
5
- This package bundles all the essential frontend build tools and libraries needed for Vibetuner-based web applications. It provides a curated, version-locked set of dependencies for building modern, reactive web interfaces.
5
+ This package bundles all the essential frontend build tools and libraries needed for
6
+ Vibetuner-based web applications. It provides a curated, version-locked set of dependencies for
7
+ building modern, reactive web interfaces.
6
8
 
7
9
  ## What is Vibetuner?
8
10
 
9
- Vibetuner is a production-ready scaffolding tool for FastAPI + MongoDB + HTMX web applications. This package (`@alltuner/vibetuner`) is the JavaScript component that provides:
11
+ Vibetuner is a production-ready scaffolding tool for FastAPI + MongoDB + HTMX web applications.
12
+ This package (`@alltuner/vibetuner`) is the JavaScript component that provides:
10
13
 
11
14
  - **Tailwind CSS 4**: Utility-first CSS framework
12
15
  - **DaisyUI**: Beautiful component library for Tailwind
13
16
  - **HTMX 2**: Dynamic HTML without complex JavaScript
14
17
  - **Build tools**: CLI tools for asset compilation
15
18
 
16
- **This package is designed to be used within projects generated by the Vibetuner scaffolding tool.** It ensures consistent frontend tooling across all Vibetuner projects.
19
+ **This package is designed to be used within projects generated by the Vibetuner scaffolding
20
+ tool.** It ensures consistent frontend tooling across all Vibetuner projects.
17
21
 
18
22
  ## Installation
19
23
 
@@ -41,17 +45,20 @@ bun dev # Start frontend asset building with hot reload
41
45
  ## Included Dependencies
42
46
 
43
47
  ### Core Frontend Libraries
48
+
44
49
  - **Tailwind CSS** (4.1+): Modern utility-first CSS framework
45
50
  - **@tailwindcss/cli**: Command-line tool for Tailwind
46
51
  - **@tailwindcss/typography**: Beautiful typographic defaults
47
52
  - **DaisyUI** (5.4+): Tailwind CSS component library
48
53
 
49
54
  ### Interactivity
55
+
50
56
  - **HTMX** (2.0+): High-power tools for HTML
51
57
  - **htmx-ext-preload**: Preload extension for faster navigation
52
58
  - **htmx-ext-sse**: Server-sent events extension for real-time updates
53
59
 
54
60
  ### Build Tools
61
+
55
62
  - **concurrently**: Run multiple dev servers simultaneously
56
63
 
57
64
  ## Usage in Generated Projects
@@ -72,6 +79,7 @@ In a Vibetuner-generated project, the package is automatically configured:
72
79
  ```
73
80
 
74
81
  The frontend asset pipeline is preconfigured for:
82
+
75
83
  - Tailwind CSS compilation with DaisyUI
76
84
  - HTMX integration
77
85
  - Hot reload during development
@@ -116,7 +124,7 @@ Vibetuner uses HTMX for dynamic, reactive interfaces without complex JavaScript:
116
124
 
117
125
  For complete documentation, guides, and examples, see the main Vibetuner repository:
118
126
 
119
- **📖 [Vibetuner Documentation](https://github.com/alltuner/vibetuner#readme)**
127
+ **📖 [Vibetuner Documentation](https://vibetuner.alltuner.com/)**
120
128
 
121
129
  ## Package Ecosystem
122
130
 
@@ -142,8 +150,8 @@ See [LICENSE](https://github.com/alltuner/vibetuner/blob/main/LICENSE) for detai
142
150
 
143
151
  ## Links
144
152
 
145
- - **Main Repository**: https://github.com/alltuner/vibetuner
146
- - **Documentation**: https://github.com/alltuner/vibetuner#readme
147
- - **Issues**: https://github.com/alltuner/vibetuner/issues
148
- - **npm**: https://www.npmjs.com/package/@alltuner/vibetuner
149
- - **Python Package**: https://pypi.org/project/vibetuner/
153
+ - **Main Repository**: <https://github.com/alltuner/vibetuner>
154
+ - **Documentation**: <https://vibetuner.alltuner.com/>
155
+ - **Issues**: <https://github.com/alltuner/vibetuner/issues>
156
+ - **npm**: <https://www.npmjs.com/package/@alltuner/vibetuner>
157
+ - **Python Package**: <https://pypi.org/project/vibetuner/>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alltuner/vibetuner",
3
- "version": "2.10.1",
3
+ "version": "2.15.1",
4
4
  "description": "Blessed JavaScript/frontend build dependencies for production-ready Vibetuner projects",
5
5
  "keywords": [
6
6
  "tailwindcss",
@@ -18,7 +18,7 @@
18
18
  "url": "https://github.com/alltuner/vibetuner",
19
19
  "directory": "vibetuner-js"
20
20
  },
21
- "homepage": "https://github.com/alltuner/vibetuner#readme",
21
+ "homepage": "https://vibetuner.alltuner.com/",
22
22
  "bugs": {
23
23
  "url": "https://github.com/alltuner/vibetuner/issues"
24
24
  },
@@ -26,8 +26,8 @@
26
26
  "tailwindcss": "^4.1.16",
27
27
  "@tailwindcss/cli": "^4.1.16",
28
28
  "@tailwindcss/typography": "^0.5.19",
29
- "daisyui": "^5.4.4",
30
- "htmx.org": "2.0.7",
29
+ "daisyui": "^5.4.5",
30
+ "htmx.org": "2.0.8",
31
31
  "htmx-ext-preload": "^2.1.2",
32
32
  "htmx-ext-sse": "^2.2.4",
33
33
  "concurrently": "^9.2.1"