@mcp-native/react-native 0.9.2 → 0.9.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +8 -7
  2. package/package.json +4 -10
package/README.md CHANGED
@@ -22,10 +22,12 @@ The renderer implements the native portion of the documented A2UI v1 Candidate p
22
22
  ## Install
23
23
 
24
24
  ```bash
25
- npm install @mcp-native/react-native react react-native
25
+ npm install @mcp-native/react-native react
26
26
  ```
27
27
 
28
- `@mcp-native/a2ui` and `@mcp-native/core` are installed as dependencies. React is a peer dependency. React Native `>=0.86.0 <1` is an optional peer because the renderer does not import it or choose a platform implementation; a native host supplies its locally bundled components.
28
+ `@mcp-native/a2ui` and `@mcp-native/core` are installed as dependencies. React `>=18.1.0` is the
29
+ only peer dependency. The renderer does not depend on Expo or import React Native; a native host
30
+ supplies its locally bundled components and platform integrations.
29
31
 
30
32
  ## Start with the A2UI v1 renderer
31
33
 
@@ -132,11 +134,10 @@ actions, persistence, and accessibility boundary in a complete native workflow.
132
134
  robustness gates](../../docs/a2ui-v1-performance.md) define repeatable Node.js render-plan budgets
133
135
  and fixed-seed generated-input coverage.
134
136
 
135
- For release/platform testing, `npm run native:host:prepare` generates an official temporary React
136
- Native `0.86.0` host at the package's minimum supported version. The host installs local package
137
- tarballs and the pinned accessibility, complete-catalog, media, and Codegen/Fabric extension
138
- fixtures. React Native versions `>=0.86.0 <1` are supported; the minimum-version gate prevents the
139
- declared floor from drifting upward as newer React Native releases arrive.
137
+ For release/platform testing, `npm run native:host:prepare` generates a pinned temporary native
138
+ host. It installs local package tarballs and the accessibility, complete-catalog, media, and
139
+ Codegen/Fabric extension fixtures. This is reproducible integration evidence, not a package peer or
140
+ native-framework version boundary.
140
141
  The [Expo Go integration proof](../../docs/native-accessibility-testing.md) documents the runnable
141
142
  app-level evidence. Generated hosts remain the automated package fixtures; the Expo app complements
142
143
  them with a workflow users can launch and inspect directly.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcp-native/react-native",
3
- "version": "0.9.2",
3
+ "version": "0.9.3",
4
4
  "description": "React Native renderer primitives for MCP Native.",
5
5
  "keywords": [
6
6
  "a2ui",
@@ -44,8 +44,8 @@
44
44
  "access": "public"
45
45
  },
46
46
  "dependencies": {
47
- "@mcp-native/a2ui": "^0.9.2",
48
- "@mcp-native/core": "^0.9.2"
47
+ "@mcp-native/a2ui": "^0.9.3",
48
+ "@mcp-native/core": "^0.9.3"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@types/react": "19.1.17",
@@ -53,12 +53,6 @@
53
53
  "test-renderer": "1.2.0"
54
54
  },
55
55
  "peerDependencies": {
56
- "react": ">=18.3.1 <20",
57
- "react-native": ">=0.86.0 <1"
58
- },
59
- "peerDependenciesMeta": {
60
- "react-native": {
61
- "optional": true
62
- }
56
+ "react": ">=18.1.0"
63
57
  }
64
58
  }