Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion generators/ark_ui/generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func (g *Generator) Generate(ctx *dotapi.Context) error {
if err := ctx.State.UpdateJSON("package.json", func(d *state.JSONDoc) error {
d.Merge(map[string]interface{}{
"dependencies": map[string]interface{}{
"@ark-ui/react": "^5.37.0",
"@ark-ui/react": "^5.37.2",
},
})
return nil
Expand Down
2 changes: 1 addition & 1 deletion generators/ark_ui/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import "github.com/version14/dot/pkg/dotapi"

var Manifest = dotapi.Manifest{
Name: "ark_ui",
Version: "0.2.0",
Version: "0.2.1",
Description: "Ark UI headless component library",
DependsOn: []string{"typescript_base"},
ConflictsWith: []string{"shadcn_ui"},
Expand Down
2 changes: 1 addition & 1 deletion generators/auth_better_auth/generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func (g *Generator) Generate(ctx *dotapi.Context) error {
if err := ctx.State.UpdateJSON("package.json", func(d *state.JSONDoc) error {
d.Merge(map[string]interface{}{
"dependencies": map[string]interface{}{
"better-auth": "^1.6.11",
"better-auth": "^1.6.16",
"cookie-parser": "^1.4.7",
},
"devDependencies": map[string]interface{}{
Expand Down
2 changes: 1 addition & 1 deletion generators/auth_better_auth/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import "github.com/version14/dot/pkg/dotapi"

var Manifest = dotapi.Manifest{
Name: "auth_better_auth",
Version: "0.2.2",
Version: "0.2.3",
Description: "BetterAuth setup with Drizzle adapter: src/lib/auth.ts plus a direct toNodeHandler mount in src/app.ts (no intermediate route file)",
DependsOn: []string{"drizzle_postgres_adapter"},
Outputs: []string{
Expand Down
2 changes: 1 addition & 1 deletion generators/auth_better_auth_frontend/generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func (g *Generator) Generate(ctx *dotapi.Context) error {
if err := ctx.State.UpdateJSON("package.json", func(d *state.JSONDoc) error {
d.Merge(map[string]interface{}{
"dependencies": map[string]interface{}{
"better-auth": "^1.6.11",
"better-auth": "^1.6.16",
},
})
return nil
Expand Down
2 changes: 1 addition & 1 deletion generators/auth_better_auth_frontend/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import "github.com/version14/dot/pkg/dotapi"

var Manifest = dotapi.Manifest{
Name: "auth_better_auth_frontend",
Version: "0.2.0",
Version: "0.2.1",
Description: "Better Auth client setup with AuthProvider and useAuth hook",
DependsOn: []string{"typescript_base"},
ConflictsWith: []string{"auth_clerk_frontend", "auth_vanilla_frontend"},
Expand Down
4 changes: 2 additions & 2 deletions generators/express_server_typescript_deps/generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ func (g *Generator) Generate(ctx *dotapi.Context) error {
"devDependencies": map[string]interface{}{
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.9.1",
"@types/node": "^25.9.2",
"nodemon": "^3.1.14",
"tsx": "^4.22.3",
"tsx": "^4.22.4",
},
})
return nil
Expand Down
2 changes: 1 addition & 1 deletion generators/express_server_typescript_deps/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import "github.com/version14/dot/pkg/dotapi"

var Manifest = dotapi.Manifest{
Name: "express_server_typescript_deps",
Version: "0.3.0",
Version: "0.3.1",
Description: "Express + CORS + dotenv npm dependencies and dev/build/start scripts for TypeScript projects",
DependsOn: []string{"express_server_entrypoint"},
Outputs: []string{},
Expand Down
4 changes: 2 additions & 2 deletions generators/express_test_setup/generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ func (g *Generator) Generate(ctx *dotapi.Context) error {
"test:coverage": "vitest run --coverage",
},
"devDependencies": map[string]interface{}{
"vitest": "^4.1.7",
"@vitest/coverage-v8": "^4.1.7",
"vitest": "^4.1.8",
"@vitest/coverage-v8": "^4.1.8",
"supertest": "^7.2.2",
"@types/supertest": "^7.2.0",
},
Expand Down
2 changes: 1 addition & 1 deletion generators/express_test_setup/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import "github.com/version14/dot/pkg/dotapi"

var Manifest = dotapi.Manifest{
Name: "express_test_setup",
Version: "0.4.0",
Version: "0.4.1",
Description: "Vitest configuration and testing dependencies (vitest, supertest) for Express TypeScript projects",
DependsOn: []string{"express_server_entrypoint"},
Outputs: []string{"vitest.config.ts"},
Expand Down
2 changes: 1 addition & 1 deletion generators/feature_flags_posthog/generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func (g *Generator) Generate(ctx *dotapi.Context) error {
if err := ctx.State.UpdateJSON("package.json", func(d *state.JSONDoc) error {
d.Merge(map[string]interface{}{
"dependencies": map[string]interface{}{
"posthog-js": "^1.376.4",
"posthog-js": "^1.384.2",
},
})
return nil
Expand Down
2 changes: 1 addition & 1 deletion generators/feature_flags_posthog/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import "github.com/version14/dot/pkg/dotapi"

var Manifest = dotapi.Manifest{
Name: "feature_flags_posthog",
Version: "0.2.0",
Version: "0.3.0",
Description: "PostHog feature flags and analytics provider",
DependsOn: []string{"typescript_base"},
Outputs: []string{
Expand Down
10 changes: 5 additions & 5 deletions generators/nextjs_base/generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ func (g *Generator) Generate(ctx *dotapi.Context) error {
"lint": "next lint",
},
"dependencies": map[string]interface{}{
"next": "^16.2.6",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"next": "^16.2.9",
"react": "^19.2.7",
"react-dom": "^19.2.7",
},
"devDependencies": map[string]interface{}{
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/node": "^25.9.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
},
})
Expand Down
2 changes: 1 addition & 1 deletion generators/nextjs_base/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import "github.com/version14/dot/pkg/dotapi"

var Manifest = dotapi.Manifest{
Name: "nextjs_base",
Version: "0.2.0",
Version: "0.2.1",
Description: "Next.js 15 App Router project with TypeScript",
DependsOn: []string{"typescript_base"},
Outputs: []string{
Expand Down
2 changes: 1 addition & 1 deletion generators/panda_css/generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func (g *Generator) Generate(ctx *dotapi.Context) error {
if err := ctx.State.UpdateJSON("package.json", func(d *state.JSONDoc) error {
d.Merge(map[string]interface{}{
"devDependencies": map[string]interface{}{
"@pandacss/dev": "^1.11.1",
"@pandacss/dev": "^1.11.3",
},
})
prepare := "panda codegen"
Expand Down
2 changes: 1 addition & 1 deletion generators/panda_css/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import "github.com/version14/dot/pkg/dotapi"

var Manifest = dotapi.Manifest{
Name: "panda_css",
Version: "0.4.0",
Version: "0.4.1",
Description: "Panda CSS v1 with styled-system code generation",
DependsOn: []string{"typescript_base"},
ConflictsWith: []string{"tailwind_v4", "shadcn_ui"},
Expand Down
2 changes: 1 addition & 1 deletion generators/prettier_typescript_deps/generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func (g *Generator) Generate(ctx *dotapi.Context) error {
"format:check": "prettier --check .",
},
"devDependencies": map[string]interface{}{
"prettier": "^3.8.3",
"prettier": "^3.8.4",
},
})
return nil
Expand Down
2 changes: 1 addition & 1 deletion generators/prettier_typescript_deps/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import "github.com/version14/dot/pkg/dotapi"

var Manifest = dotapi.Manifest{
Name: "prettier_typescript_deps",
Version: "0.1.1",
Version: "0.1.2",
Description: "Adds prettier devDependency and format script to package.json (TypeScript projects)",
DependsOn: []string{"prettier_config", "*"},
Outputs: []string{},
Expand Down
8 changes: 4 additions & 4 deletions generators/react_app/generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ func (g *Generator) Generate(ctx *dotapi.Context) error {
"preview": "vite preview",
},
"dependencies": map[string]interface{}{
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react": "^19.2.7",
"react-dom": "^19.2.7",
},
"devDependencies": map[string]interface{}{
"@types/react": "^19.2.15",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"vite": "^8.0.14",
"vite": "^8.0.16",
},
})
return nil
Expand Down
2 changes: 1 addition & 1 deletion generators/react_app/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
// project needs the TypeScript foundation first.
var Manifest = dotapi.Manifest{
Name: "react_app",
Version: "0.7.1",
Version: "0.7.2",
Description: "React + Vite application setup",
DependsOn: []string{"typescript_base"},
Outputs: []string{
Expand Down
4 changes: 2 additions & 2 deletions generators/react_router_v7/generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ func (g *Generator) Generate(ctx *dotapi.Context) error {
if err := ctx.State.UpdateJSON("package.json", func(d *state.JSONDoc) error {
d.Merge(map[string]interface{}{
"dependencies": map[string]interface{}{
"react-router": "^7.16.0",
"react-router-dom": "^7.16.0",
"react-router": "^7.17.0",
"react-router-dom": "^7.17.0",
},
})
return nil
Expand Down
2 changes: 1 addition & 1 deletion generators/react_router_v7/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import "github.com/version14/dot/pkg/dotapi"

var Manifest = dotapi.Manifest{
Name: "react_router_v7",
Version: "0.2.0",
Version: "0.3.0",
Description: "React Router v7 client-side routing for React+Vite",
DependsOn: []string{"react_app"},
ConflictsWith: []string{"tanstack_router"},
Expand Down
2 changes: 1 addition & 1 deletion generators/sentry_frontend/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import "github.com/version14/dot/pkg/dotapi"

var Manifest = dotapi.Manifest{
Name: "sentry_frontend",
Version: "0.2.0",
Version: "0.3.0",
Description: "Sentry error tracking and performance monitoring",
DependsOn: []string{"typescript_base"},
Outputs: []string{
Expand Down
Loading