From 0dbfb3a51d8d47359f8c6f1afa13d9e63ed9d6ab Mon Sep 17 00:00:00 2001 From: Miki Leib <38354019+M-i-k-e-l@users.noreply.github.com> Date: Wed, 22 Jan 2025 12:38:47 +0200 Subject: [PATCH] uilib-native - fix react version (#3487) --- lib/package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/package.json b/lib/package.json index 6f025585ff..fb2dc85c75 100644 --- a/lib/package.json +++ b/lib/package.json @@ -1,6 +1,6 @@ { "name": "uilib-native", - "version": "4.5.0", + "version": "4.5.1", "homepage": "https://github.com/wix/react-native-ui-lib", "description": "uilib native components (separated from js components)", "main": "components/index", @@ -10,14 +10,14 @@ "author": "Ethan Sharabi ", "license": "MIT", "dependencies": { - "lodash": "^4.0.0", + "lodash": "^4.17.21", "prop-types": "^15.5.10" }, "devDependencies": { "shell-utils": "^1.0.10" }, "peerDependencies": { - "react": "^16.0.0", - "react-native": "^0.51.0" + "react": ">=17.0.1", + "react-native": ">=0.64.1" } }