chore: update dependencies with compatibility fixes

- Update all packages to latest versions via pnpm update --latest
- Downgrade Prisma 7 to 6 (v7 requires schema migration)
- Downgrade Tailwind CSS 4 to 3 (v4 requires PostCSS migration)
- Downgrade Storybook 10 to 8 (addons not available in v10)
- Pin cheerio to 1.0.0-rc.12 via pnpm override (type exports changed)
- Fix AI SDK tool definitions: parameters -> inputSchema
- Fix cheerio types in extract-meta and table-extract tools
- Add explicit type annotations to tool execute functions
- Migrate biome config to v2.3.11 schema

All type-checks, tests, and builds pass.
This commit is contained in:
Ajax Davis 2026-01-09 22:49:41 +10:00
parent cb157611df
commit 5c9f1a1d0a
195 changed files with 5893 additions and 4845 deletions

View file

@ -13,7 +13,9 @@
"default": "./dist/index.js"
}
},
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
@ -21,23 +23,23 @@
"cli": "tsx src/cli.ts"
},
"dependencies": {
"ai": "^6.0.3",
"@ai-sdk/openai": "^3.0.1",
"better-sqlite3": "^11.8.1",
"drizzle-orm": "^0.38.3",
"commander": "^13.0.0",
"p-limit": "^6.2.0",
"zod": "^3.24.1",
"ora": "^8.1.1",
"chalk": "^5.4.1"
"@ai-sdk/openai": "^3.0.7",
"ai": "^6.0.23",
"better-sqlite3": "^12.5.0",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"drizzle-orm": "^0.45.1",
"ora": "^9.0.0",
"p-limit": "^7.2.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@tpmjs/tsconfig": "workspace:*",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.5",
"drizzle-kit": "^0.30.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.0.3",
"drizzle-kit": "^0.31.8",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}