-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.44 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
67
68
69
{
"name": "execbro",
"version": "2.9.1",
"mcpName": "com.execbro/execbro",
"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": {
"execbro": "./build/bin.js"
},
"scripts": {
"build": "tsc && chmod 755 build/bin.js build/index.js",
"inject-token": "node scripts/inject-build-token.mjs",
"start": "node build/bin.js",
"dev": "nodemon --watch src --ext ts --exec 'npm run build && node build/bin.js'",
"dev:mcp": "nodemon --watch src --ext ts --exec 'npm run build && node build/bin.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",
"tools:json": "npm run build && node scripts/generate-tools-json.mjs",
"postbuild": "node scripts/generate-tools-json.mjs && node scripts/check-build-hygiene.mjs"
},
"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/execbro.git"
},
"homepage": "https://github.com/igorzheludkov/execbro#readme",
"bugs": {
"url": "https://github.com/igorzheludkov/execbro/issues"
},
"engines": {
"node": ">=20.9.0"
},
"files": [
"build",
"tools.json"
],
"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.35.3",
"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"
}
}