-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1010 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1010 Bytes
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
{
"name": "react-native-devtools-mcp",
"description": "A Model Context Protocol (MCP) server for React Native DevTools",
"version": "0.0.0",
"type": "module",
"bin": {
"react-native-devtools-mcp": "./build/index.js"
},
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\""
},
"files": [
"build"
],
"keywords": [
"mcp",
"react-native",
"devtools"
],
"devDependencies": {
"@types/express": "^5.0.5",
"@types/jsdom": "^27.0.0",
"@types/node": "^22.10.0",
"@types/react-devtools-inline": "^4.24.8",
"typescript": "^5.7.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.22.0",
"devtools-protocol": "^0.0.1548823",
"eventemitter3": "^5.0.1",
"express": "^5.1.0",
"jsdom": "^27.2.0",
"react": "^19.2.0",
"react-devtools-inline": "^6.1.5",
"react-dom": "^19.2.0",
"react-is": "^19.2.0",
"zod": "^3.25.76"
},
"author": "Szymon Chmal",
"license": "MIT"
}