fix: peer dependencies are now loose

This commit is contained in:
2026-07-14 15:04:31 +02:00
parent b1966b0c57
commit 72328aacf6
3 changed files with 11 additions and 19 deletions
+8 -4
View File
@@ -14,6 +14,7 @@
"typecheck": "tsc --noEmit && tsc -p plugin/tsconfig.json --noEmit",
"build:plugin": "tsc -p plugin/tsconfig.json",
"build": "bun run typecheck && bob build && bun run build:plugin",
"prepare": "bun run build",
"codegen": "nitrogen --logLevel=\"debug\" && node post-script.js",
"release": "semantic-release"
},
@@ -48,7 +49,10 @@
"workspaces": [
"example"
],
"repository": "https://github.com/zoriya/react-native-omni.git",
"repository": {
"type": "git",
"url": "git+https://github.com/zoriya/react-native-omni.git"
},
"author": "Zoe Roux",
"license": "MIT",
"bugs": "https://github.com/zoriya/react-native-omni/issues",
@@ -76,9 +80,9 @@
"typescript": "^7.0.2"
},
"peerDependencies": {
"react": "19.2.7",
"react-native": "0.86.0",
"react-native-nitro-modules": "0.36.1"
"react": ">=19.0.0",
"react-native": ">=0.86.0",
"react-native-nitro-modules": ">=0.36.0"
},
"react-native-builder-bob": {
"source": "src",