From 61c7cde63d25f9d5de4b5e49c3bf15b69276c789 Mon Sep 17 00:00:00 2001 From: Nimesh Nayaju Date: Wed, 1 Apr 2026 12:21:49 -0400 Subject: [PATCH] Update package.json files to add react-error-boundary dependency (#3298) --- README.md | 2 ++ examples/nextjs-chat-sdk-ai-bot/package.json | 7 ++++--- examples/nextjs-chat-sdk-bot/package.json | 3 ++- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 238f0816415..63372b0df50 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,8 @@ notifications, and more. - [`@liveblocks/node`](https://liveblocks.io/docs/api-reference/liveblocks-node) - [`@liveblocks/emails`](https://liveblocks.io/docs/api-reference/liveblocks-emails) - [`@liveblocks/emails`](https://liveblocks.io/docs/api-reference/liveblocks-emails) +- [`@liveblocks/chat-sdk-adapter`](https://liveblocks.io/docs/api-reference/liveblocks-chat-sdk-adapter) +- [Python SDK](https://liveblocks.io/docs/api-reference/liveblocks-python) - [`REST API`](https://liveblocks.io/docs/api-reference/rest-api-endpoints) ## Developers diff --git a/examples/nextjs-chat-sdk-ai-bot/package.json b/examples/nextjs-chat-sdk-ai-bot/package.json index 389f616eb34..e90c2e44c14 100644 --- a/examples/nextjs-chat-sdk-ai-bot/package.json +++ b/examples/nextjs-chat-sdk-ai-bot/package.json @@ -9,19 +9,20 @@ "start": "next start" }, "dependencies": { + "@ai-sdk/anthropic": "^3.0.64", "@chat-adapter/state-memory": "^4.23.0", "@liveblocks/chat-sdk-adapter": "^3.15.5", "@liveblocks/client": "^3.15.5", "@liveblocks/node": "^3.15.5", "@liveblocks/react": "^3.15.5", "@liveblocks/react-ui": "^3.15.5", - "@ai-sdk/anthropic": "^3.0.64", "ai": "^6.0.140", - "zod": "^4.3.6", "chat": "^4.22.0", "next": "16.2.1", "react": "19.2.4", - "react-dom": "19.2.4" + "react-dom": "19.2.4", + "react-error-boundary": "^6.1.1", + "zod": "^4.3.6" }, "devDependencies": { "@tailwindcss/postcss": "^4", diff --git a/examples/nextjs-chat-sdk-bot/package.json b/examples/nextjs-chat-sdk-bot/package.json index ea57cb201a6..40d375742ff 100644 --- a/examples/nextjs-chat-sdk-bot/package.json +++ b/examples/nextjs-chat-sdk-bot/package.json @@ -18,7 +18,8 @@ "chat": "^4.22.0", "next": "16.2.1", "react": "19.2.4", - "react-dom": "19.2.4" + "react-dom": "19.2.4", + "react-error-boundary": "^6.1.1" }, "devDependencies": { "@tailwindcss/postcss": "^4",