From 241849bf5ff473971c7c7636c01c4a6d203d6e56 Mon Sep 17 00:00:00 2001 From: Mayo Takanashi Date: Tue, 19 Nov 2024 01:57:31 +0900 Subject: [PATCH] chore: allow react v19 as peer dep --- packages/lib/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/lib/package.json b/packages/lib/package.json index 62a61fc..0709989 100644 --- a/packages/lib/package.json +++ b/packages/lib/package.json @@ -37,8 +37,8 @@ "test:integration:watch": "vitest" }, "peerDependencies": { - "react": "^17.0.2 || ^18.0.0", - "react-dom": "^17.0.2 || ^18.0.0" + "react": "^17.0.2 || ^18.0 || ^19.0", + "react-dom": "^17.0.2 || ^18.0 || ^19.0" }, "devDependencies": { "@testing-library/jest-dom": "6.4.8",