@ceraph/react-native-mcp 0.2.0 → 0.2.2
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.
- package/LICENSE +1 -1
- package/README.md +6 -0
- package/package.json +8 -8
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -4,6 +4,12 @@ MCP server for React Native and Expo development. Automatic build error capture,
|
|
|
4
4
|
|
|
5
5
|
Works with any MCP client: Claude Code, Cursor, Codex, Windsurf, and others.
|
|
6
6
|
|
|
7
|
+
> ⚠️ **Ignore the `npm i` line above.** Run this once instead:
|
|
8
|
+
>
|
|
9
|
+
> ```bash
|
|
10
|
+
> npx @ceraph/react-native-mcp init
|
|
11
|
+
> ```
|
|
12
|
+
|
|
7
13
|
## Requirements
|
|
8
14
|
|
|
9
15
|
- Node.js 18+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ceraph/react-native-mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "MCP server for React Native and Expo development workflow",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -18,6 +18,11 @@
|
|
|
18
18
|
"dist",
|
|
19
19
|
"README.md"
|
|
20
20
|
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "tsc",
|
|
23
|
+
"typecheck": "tsc --noEmit",
|
|
24
|
+
"test": "vitest run --passWithNoTests"
|
|
25
|
+
},
|
|
21
26
|
"dependencies": {
|
|
22
27
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
23
28
|
"zod": "^3.25.0"
|
|
@@ -33,10 +38,5 @@
|
|
|
33
38
|
"publishConfig": {
|
|
34
39
|
"access": "public"
|
|
35
40
|
},
|
|
36
|
-
"license": "MIT"
|
|
37
|
-
|
|
38
|
-
"build": "tsc",
|
|
39
|
-
"typecheck": "tsc --noEmit",
|
|
40
|
-
"test": "vitest run --passWithNoTests"
|
|
41
|
-
}
|
|
42
|
-
}
|
|
41
|
+
"license": "MIT"
|
|
42
|
+
}
|