-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "react-native-ai-devtools",
"version": "1.10.11",
"description": "ExecBro — MCP server giving AI agents eyes and hands into React Native apps. Logs, REPL, state inspection, tap, screenshot.",
"type": "module",
"main": "build/index.js",
"bin": {
"react-native-ai-devtools": "./build/index.js"
},
"scripts": {
"build": "tsc && chmod 755 build/index.js",
"inject-token": "node scripts/inject-build-token.mjs",
"start": "node build/index.js",
"dev": "nodemon --watch src --ext ts --exec 'npm run build && node build/index.js'",
"dev:mcp": "nodemon --watch src --ext ts --exec 'npm run build && node build/index.js --http'",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:unit": "NODE_OPTIONS='--experimental-vm-modules' jest --testPathPatterns='__tests__/unit'",
"test:integration": "NODE_OPTIONS='--experimental-vm-modules' jest --testPathPatterns='__tests__/integration'",
"test:tap": "node --experimental-vm-modules node_modules/.bin/jest --testPathPatterns='tap-strategies' --no-coverage --testTimeout=30000"
},
"keywords": [
"mcp",
"react-native",
"metro",
"debugging",
"ai",
"claude",
"expo"
],
"author": "Ihor Zheludkov <500griven@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/igorzheludkov/react-native-ai-devtools.git"
},
"homepage": "https://github.com/igorzheludkov/react-native-ai-devtools#readme",
"bugs": {
"url": "https://github.com/igorzheludkov/react-native-ai-devtools/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"build"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1",
"fast-xml-parser": "^5.3.3",
"node-easyocr": "^1.0.9",
"pixelmatch": "^7.1.0",
"posthog-node": "^5.28.11",
"sharp": "^0.34.5",
"tonl": "^2.5.2",
"ws": "^8.18.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"@types/ws": "^8.18.1",
"jest": "^30.2.0",
"nodemon": "^3.1.11",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}