@ohah/react-native-mcp-server 0.1.0-rc.1

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/package.json ADDED
@@ -0,0 +1,87 @@
1
+ {
2
+ "name": "@ohah/react-native-mcp-server",
3
+ "version": "0.1.0-rc.1",
4
+ "description": "MCP server for React Native app automation and monitoring",
5
+ "keywords": [
6
+ "automation",
7
+ "mcp",
8
+ "model-context-protocol",
9
+ "monitoring",
10
+ "react-native"
11
+ ],
12
+ "homepage": "https://github.com/ohah/react-native-mcp#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/ohah/react-native-mcp/issues"
15
+ },
16
+ "license": "MIT",
17
+ "author": "ohah",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/ohah/react-native-mcp.git",
21
+ "directory": "packages/react-native-mcp-server"
22
+ },
23
+ "bin": {
24
+ "react-native-mcp-server": "dist/index.js"
25
+ },
26
+ "files": [
27
+ "dist",
28
+ "runtime.js",
29
+ "babel-preset.cjs",
30
+ "babel-plugin-app-registry.cjs",
31
+ "babel-plugin-inject-testid.cjs"
32
+ ],
33
+ "type": "module",
34
+ "main": "dist/index.js",
35
+ "types": "dist/index.d.ts",
36
+ "exports": {
37
+ ".": {
38
+ "types": "./dist/index.d.ts",
39
+ "import": "./dist/index.js",
40
+ "require": "./dist/index.js"
41
+ },
42
+ "./runtime": "./runtime.js",
43
+ "./runtime.js": "./runtime.js",
44
+ "./babel-preset": "./babel-preset.cjs",
45
+ "./babel-plugin-app-registry": "./babel-plugin-app-registry.cjs",
46
+ "./babel-plugin-inject-testid": "./babel-plugin-inject-testid.cjs"
47
+ },
48
+ "publishConfig": {
49
+ "access": "public"
50
+ },
51
+ "scripts": {
52
+ "build": "bunx tsdown && node scripts/chmod-dist.mjs",
53
+ "prepublishOnly": "bun run build",
54
+ "dev": "bun run --watch src/index.ts",
55
+ "mcp:run": "bun dist/index.js",
56
+ "mcp": "bun run build && bun dist/index.js",
57
+ "test": "bun test src/"
58
+ },
59
+ "dependencies": {
60
+ "@modelcontextprotocol/sdk": "^1.25.0",
61
+ "fast-xml-parser": "^5.3.6",
62
+ "pixelmatch": "^7.1.0",
63
+ "sharp": "^0.34.5",
64
+ "ws": "^8.18.0",
65
+ "zod": "^3.25.0"
66
+ },
67
+ "devDependencies": {
68
+ "@babel/core": "^7.26.0",
69
+ "@babel/generator": "^7.26.0",
70
+ "@babel/parser": "^7.26.0",
71
+ "@babel/traverse": "^7.26.0",
72
+ "@babel/types": "^7.26.0",
73
+ "@ohah/react-native-mcp-server": "workspace:*",
74
+ "@types/babel__generator": "^7.6.8",
75
+ "@types/babel__traverse": "^7.28.0",
76
+ "@types/bun": "latest",
77
+ "@types/node": "^20.10.0",
78
+ "@types/ws": "^8.5.0",
79
+ "metro": "^0.83.3",
80
+ "tsdown": "0.20.3",
81
+ "typescript": "^5.9.3"
82
+ },
83
+ "engines": {
84
+ "bun": ">=1.0.0",
85
+ "node": ">=24"
86
+ }
87
+ }