Update packages (#191)

This commit is contained in:
Hakan Shehu
2025-08-12 10:31:28 +02:00
committed by GitHub
parent 363ed3c51e
commit a3de8a84ac
12 changed files with 381 additions and 377 deletions

View File

@@ -33,7 +33,7 @@
"@types/electron-squirrel-startup": "^1.0.2",
"@vitejs/plugin-react": "^5.0.0",
"electron": "^37.2.6",
"vite": "^7.1.1"
"vite": "^7.1.2"
},
"dependencies": {
"@colanode/client": "*",

View File

@@ -19,7 +19,7 @@
},
"description": "",
"devDependencies": {
"@types/node": "^24.2.0",
"@types/node": "^24.2.1",
"@types/nodemailer": "^6.4.17",
"@types/pg": "^8.15.5",
"@types/ws": "^8.18.1",
@@ -27,28 +27,28 @@
"tsup": "^8.5.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.863.0",
"@aws-sdk/client-s3": "^3.864.0",
"@colanode/core": "*",
"@colanode/crdt": "*",
"@fastify/cors": "^11.1.0",
"@fastify/websocket": "^11.2.0",
"@langchain/core": "^0.3.68",
"@langchain/core": "^0.3.69",
"@langchain/google-genai": "^0.2.16",
"@langchain/langgraph": "^0.4.3",
"@langchain/openai": "^0.6.6",
"@langchain/langgraph": "^0.4.4",
"@langchain/openai": "^0.6.7",
"@node-rs/argon2": "^2.0.2",
"@redis/client": "^5.8.0",
"@tus/s3-store": "^2.0.0",
"@tus/server": "^2.3.0",
"bullmq": "^5.56.9",
"bullmq": "^5.56.10",
"diff": "^8.0.2",
"dotenv": "^17.2.1",
"fastify": "^5.4.0",
"fastify": "^5.5.0",
"fastify-type-provider-zod": "^5.0.3",
"handlebars": "^4.7.8",
"js-sha256": "^0.11.0",
"ky": "^1.8.2",
"kysely": "^0.28.4",
"kysely": "^0.28.5",
"langchain": "^0.3.30",
"langfuse-langchain": "^3.38.4",
"ms": "^2.1.3",
@@ -56,6 +56,6 @@
"pg": "^8.16.3",
"pino": "^9.8.0",
"sharp": "^0.34.3",
"zod": "^4.0.15"
"zod": "^4.0.17"
}
}

View File

@@ -26,6 +26,7 @@ export const emailVerifyRoute: FastifyPluginCallbackZod = (
response: {
200: loginOutputSchema,
400: apiErrorOutputSchema,
404: apiErrorOutputSchema,
429: apiErrorOutputSchema,
},
},

View File

@@ -40,7 +40,9 @@ export const fileUploadRoute: FastifyPluginCallbackZod = (
uploadId: z.string(),
}),
400: apiErrorOutputSchema,
403: apiErrorOutputSchema,
404: apiErrorOutputSchema,
500: apiErrorOutputSchema,
},
},
bodyLimit: 1024 * 1024 * 100, // 100MB

View File

@@ -29,6 +29,7 @@ export const workspaceUpdateRoute: FastifyPluginCallbackZod = (
400: apiErrorOutputSchema,
403: apiErrorOutputSchema,
404: apiErrorOutputSchema,
500: apiErrorOutputSchema,
},
},
handler: async (request, reply) => {

View File

@@ -12,14 +12,14 @@
"dependencies": {
"@colanode/client": "*",
"@colanode/ui": "*",
"@sqlite.org/sqlite-wasm": "^3.50.3-build1",
"@sqlite.org/sqlite-wasm": "^3.50.4-build1",
"comlink": "^4.4.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.11",
"@vitejs/plugin-react": "^5.0.0",
"tailwindcss": "^4.1.8",
"vite": "^7.1.1",
"vite": "^7.1.2",
"vite-plugin-pwa": "^1.0.2"
}
}

674
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -28,8 +28,8 @@
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",

View File

@@ -24,14 +24,14 @@
"coverage": "vitest run --coverage "
},
"dependencies": {
"@tiptap/core": "^3.0.7",
"@tiptap/core": "^3.1.0",
"@tiptap/pm": "^3.0.7",
"async-lock": "^1.4.1",
"file-type": "^21.0.0",
"isomorphic-ws": "^5.0.0",
"js-sha256": "^0.11.1",
"ky": "^1.8.2",
"kysely": "^0.28.4",
"kysely": "^0.28.5",
"ms": "^2.1.3",
"semver": "^7.7.2",
"tus-js-client": "^4.3.1"

View File

@@ -20,6 +20,6 @@
"dependencies": {
"fractional-indexing-jittered": "^1.0.0",
"ulid": "^3.0.1",
"zod": "^4.0.15"
"zod": "^4.0.17"
}
}

View File

@@ -23,8 +23,8 @@
"dependencies": {
"@colanode/core": "^1.0.0",
"diff": "^8.0.2",
"js-base64": "^3.7.7",
"js-base64": "^3.7.8",
"yjs": "^13.6.27",
"zod": "^4.0.15"
"zod": "^4.0.17"
}
}

View File

@@ -19,7 +19,7 @@
"devDependencies": {
"@tailwindcss/postcss": "^4.1.11",
"@types/is-hotkey": "^0.1.10",
"@types/react": "^19.1.9",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"tailwindcss": "^4.1.8",
"tw-animate-css": "^1.3.6"
@@ -44,28 +44,28 @@
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.7",
"@react-oauth/google": "^0.12.2",
"@tanstack/react-query": "^5.84.1",
"@tanstack/react-query": "^5.84.2",
"@tanstack/react-virtual": "^3.13.12",
"@tiptap/core": "^3.0.9",
"@tiptap/extension-blockquote": "^3.0.9",
"@tiptap/extension-bold": "^3.0.9",
"@tiptap/extension-code": "^3.0.9",
"@tiptap/extension-code-block-lowlight": "^3.0.9",
"@tiptap/extension-document": "^3.0.9",
"@tiptap/extension-hard-break": "^3.0.9",
"@tiptap/extension-horizontal-rule": "^3.0.9",
"@tiptap/extension-italic": "^3.0.9",
"@tiptap/extension-link": "^3.0.9",
"@tiptap/extension-list": "^3.0.9",
"@tiptap/extension-paragraph": "^3.0.9",
"@tiptap/extension-strike": "^3.0.9",
"@tiptap/extension-table": "^3.0.9",
"@tiptap/extension-text": "^3.0.9",
"@tiptap/extension-underline": "^3.0.9",
"@tiptap/extensions": "^3.0.9",
"@tiptap/extension-blockquote": "^3.1.0",
"@tiptap/extension-bold": "^3.1.0",
"@tiptap/extension-code": "^3.1.0",
"@tiptap/extension-code-block-lowlight": "^3.1.0",
"@tiptap/extension-document": "^3.1.0",
"@tiptap/extension-hard-break": "^3.1.0",
"@tiptap/extension-horizontal-rule": "^3.1.0",
"@tiptap/extension-italic": "^3.1.0",
"@tiptap/extension-link": "^3.1.0",
"@tiptap/extension-list": "^3.1.0",
"@tiptap/extension-paragraph": "^3.1.0",
"@tiptap/extension-strike": "^3.1.0",
"@tiptap/extension-table": "^3.1.0",
"@tiptap/extension-text": "^3.1.0",
"@tiptap/extension-underline": "^3.1.0",
"@tiptap/extensions": "^3.1.0",
"@tiptap/pm": "^3.0.7",
"@tiptap/react": "^3.0.9",
"@tiptap/suggestion": "^3.0.9",
"@tiptap/react": "^3.1.0",
"@tiptap/suggestion": "^3.1.0",
"class-variance-authority": "^0.7.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
@@ -84,6 +84,6 @@
"tailwind-merge": "^3.3.1",
"tiptap-extension-auto-joiner": "^0.1.3",
"ts-pattern": "^5.8.0",
"zod": "^4.0.15"
"zod": "^4.0.17"
}
}