-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.15 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
{
"name": "chrome-inspector-mcp",
"version": "0.0.1",
"description": "MCP server for Chrome DevTools CSS inspection",
"license": "MIT",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git@github.com:devtoolcss/chrome-inspector-mcp.git"
},
"homepage": "https://github.com/devtoolcss/chrome-inspector-mcp#readme",
"keywords": [
"chrome",
"debugging",
"devtools",
"mcp",
"mcp-server"
],
"publishConfig": {
"provenance": true
},
"type": "module",
"bin": {
"chrome-inspector-mcp": "./dist/index.js"
},
"scripts": {
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
"build": "tsc && chmod +x dist/index.js",
"prepare": "pnpm build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.22.0",
"ws": "^8.18.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/ws": "^8.5.13",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.18.2+sha512.9fb969fa749b3ade6035e0f109f0b8a60b5d08a1a87fdf72e337da90dcc93336e2280ca4e44f2358a649b83c17959e9993e777c2080879f3801e6f0d999ad3dd"
}