fix: title generation + ai sdk upgrade (#1392)

This commit is contained in:
josh 2026-01-15 16:06:42 +00:00 committed by GitHub
parent f19d3d4071
commit 9d5d8a3ea7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
38 changed files with 1422 additions and 2360 deletions

View file

@ -6,8 +6,8 @@
"dev": "next dev --turbo",
"build": "tsx lib/db/migrate && next build",
"start": "next start",
"lint": "npx ultracite@latest check",
"format": "npx ultracite@latest fix",
"lint": "ultracite check",
"format": "ultracite fix",
"db:generate": "drizzle-kit generate",
"db:migrate": "npx tsx lib/db/migrate.ts",
"db:studio": "drizzle-kit studio",
@ -18,9 +18,9 @@
"test": "export PLAYWRIGHT=True && pnpm exec playwright test"
},
"dependencies": {
"@ai-sdk/gateway": "2.0.0-beta.85",
"@ai-sdk/provider": "3.0.0-beta.27",
"@ai-sdk/react": "3.0.0-beta.162",
"@ai-sdk/gateway": "^3.0.15",
"@ai-sdk/provider": "^3.0.3",
"@ai-sdk/react": "3.0.39",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-python": "^6.1.6",
"@codemirror/state": "^6.5.0",
@ -47,7 +47,7 @@
"@vercel/functions": "^2.0.0",
"@vercel/otel": "^1.12.0",
"@xyflow/react": "^12.10.0",
"ai": "6.0.0-beta.159",
"ai": "6.0.37",
"bcrypt-ts": "^5.0.2",
"class-variance-authority": "^0.7.1",
"classnames": "^2.5.1",
@ -87,11 +87,11 @@
"react-resizable-panels": "^2.1.7",
"react-syntax-highlighter": "^15.6.6",
"redis": "^5.0.0",
"resumable-stream": "^2.0.0",
"resumable-stream": "^2.2.10",
"server-only": "^0.0.1",
"shiki": "^3.14.0",
"shiki": "^3.21.0",
"sonner": "^1.5.0",
"streamdown": "^1.4.0",
"streamdown": "^2.0.1",
"swr": "^2.2.5",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
@ -100,7 +100,7 @@
"zod": "^3.25.76"
},
"devDependencies": {
"@biomejs/biome": "2.2.2",
"@biomejs/biome": "2.3.11",
"@playwright/test": "^1.50.1",
"@tailwindcss/postcss": "^4.1.13",
"@tailwindcss/typography": "^0.5.15",
@ -116,7 +116,7 @@
"tailwindcss": "^4.1.13",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"ultracite": "5.3.9"
"ultracite": "^7.0.11"
},
"packageManager": "pnpm@9.12.3"
}