update dependencies

This commit is contained in:
Amruth Pillai
2026-02-03 22:55:22 +01:00
parent 726968288c
commit 3151f6a9cc
5 changed files with 558 additions and 549 deletions
+1
View File
@@ -38,6 +38,7 @@
},
"correctness": {
"noUnknownTypeSelector": "off",
"useExhaustiveDependencies": "off",
"noUnusedImports": {
"fix": "safe",
"level": "error",
+20 -20
View File
@@ -31,10 +31,10 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.35",
"@ai-sdk/anthropic": "^3.0.36",
"@ai-sdk/google": "^3.0.20",
"@ai-sdk/openai": "^3.0.25",
"@aws-sdk/client-s3": "^3.980.0",
"@aws-sdk/client-s3": "^3.982.0",
"@better-auth/core": "1.5.0-beta.11",
"@better-auth/passkey": "1.5.0-beta.11",
"@dnd-kit/core": "^6.3.1",
@@ -56,17 +56,17 @@
"@sindresorhus/slugify": "^3.0.0",
"@t3-oss/env-core": "^0.13.10",
"@tanstack/react-query": "5.90.20",
"@tanstack/react-router": "^1.157.18",
"@tanstack/react-router-ssr-query": "^1.157.18",
"@tanstack/react-start": "^1.157.18",
"@tanstack/zod-adapter": "^1.157.18",
"@tiptap/extension-highlight": "^3.18.0",
"@tiptap/extension-table": "^3.18.0",
"@tiptap/extension-text-align": "^3.18.0",
"@tiptap/pm": "^3.18.0",
"@tiptap/react": "^3.18.0",
"@tiptap/starter-kit": "^3.18.0",
"ai": "^6.0.67",
"@tanstack/react-router": "^1.158.0",
"@tanstack/react-router-ssr-query": "^1.158.0",
"@tanstack/react-start": "^1.158.0",
"@tanstack/zod-adapter": "^1.158.0",
"@tiptap/extension-highlight": "^3.19.0",
"@tiptap/extension-table": "^3.19.0",
"@tiptap/extension-text-align": "^3.19.0",
"@tiptap/pm": "^3.19.0",
"@tiptap/react": "^3.19.0",
"@tiptap/starter-kit": "^3.19.0",
"ai": "^6.0.69",
"ai-sdk-ollama": "^3.3.0",
"bcrypt": "^6.0.0",
"better-auth": "1.5.0-beta.11",
@@ -74,7 +74,7 @@
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"dompurify": "^3.3.1",
"drizzle-orm": "^1.0.0-beta.12-a5629fb",
"drizzle-orm": "^1.0.0-beta.13-f728631",
"es-toolkit": "^1.44.0",
"fast-deep-equal": "^3.1.3",
"fuse.js": "^7.1.0",
@@ -82,7 +82,7 @@
"input-otp": "^1.4.2",
"js-cookie": "^3.0.5",
"monaco-editor": "^0.55.1",
"motion": "^12.29.3",
"motion": "^12.31.0",
"nodemailer": "^7.0.13",
"pg": "^8.18.0",
"puppeteer-core": "^24.36.1",
@@ -91,8 +91,8 @@
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.1",
"react-hotkeys-hook": "^5.2.3",
"react-resizable-panels": "^4.5.8",
"react-hotkeys-hook": "^5.2.4",
"react-resizable-panels": "^4.5.9",
"react-window": "^2.2.6",
"react-zoom-pan-pinch": "^3.7.0",
"reflect-metadata": "^0.2.2",
@@ -113,7 +113,7 @@
"zustand": "^5.0.11"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@biomejs/biome": "^2.3.14",
"@lingui/babel-plugin-lingui-macro": "^5.9.0",
"@lingui/cli": "^5.9.0",
"@lingui/vite-plugin": "^5.9.0",
@@ -127,8 +127,8 @@
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.3",
"babel-plugin-macros": "^3.1.0",
"drizzle-kit": "^1.0.0-beta.12-a5629fb",
"knip": "^5.82.1",
"drizzle-kit": "^1.0.0-beta.13-f728631",
"knip": "^5.83.0",
"nitro": "npm:nitro-nightly@latest",
"node-addon-api": "^8.5.0",
"node-gyp": "^12.2.0",
+537 -527
View File
File diff suppressed because it is too large Load Diff
-1
View File
@@ -16,7 +16,6 @@ export function Header() {
const ticking = useRef(false);
const springY = useSpring(y, { stiffness: 300, damping: 40 });
// biome-ignore lint/correctness/useExhaustiveDependencies: not required to be exhaustive
useEffect(() => {
if (typeof window === "undefined") return;
-1
View File
@@ -57,7 +57,6 @@ function composeRefs<T>(...refs: PossibleRef<T>[]): React.RefCallback<T> {
* Accepts callback refs and RefObject(s)
*/
function useComposedRefs<T>(...refs: PossibleRef<T>[]): React.RefCallback<T> {
// biome-ignore lint/correctness/useExhaustiveDependencies: we want to memoize by all values
return useCallback(composeRefs(...refs), refs);
}