From b82d51a2569dac4ffad0478e0bc16bc40abf6ee9 Mon Sep 17 00:00:00 2001 From: Jonathan Berry <144705822+jberrybuildtech@users.noreply.github.com> Date: Mon, 4 Dec 2023 12:57:32 -0500 Subject: [PATCH] Update package.json to support react 18 Adding react 18 to package.json support. --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 6f0abc6..cd19311 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-toast-notifications", - "version": "2.5.1", + "version": "3.0.0", "description": "A configurable, composable, toast notification system for react.", "main": "dist/index.js", "typings": "./index.d.ts", @@ -70,7 +70,7 @@ "webpack-dev-server": "^3.1.3" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0", - "react-dom": "^16.8.0 || ^17.0.0" + "react": "^16.8.0 || ^17.0.0" || "^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0" || "^18.0.0" } }