-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.87 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.87 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": "devtools-debugger-mcp",
"version": "1.0.0",
"description": "MCP server exposing full Chrome DevTools Protocol debugging: breakpoints, stepping, call stacks, eval, and source maps. Also supports tab control, JS execution, screenshots, and network monitoring.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node --esm src/index.ts",
"watch": "tsc --watch",
"prepare": "npm run build",
"test": "DEBUG_CDP_TEST=true node --experimental-strip-types --test \"tests/**/*.ts\"",
"test:e2e": "npm run build && DEBUG_CDP_TEST=true timeout 120 node --experimental-strip-types --test tests/mcp-e2e.test.ts",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\""
},
"bin": {
"devtools-debugger-mcp": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"chrome",
"devtools",
"debugger",
"breakpoints",
"stepping",
"call-stacks",
"cdp",
"automation",
"testing",
"screenshots",
"network-monitoring",
"browser-automation",
"chrome-devtools-protocol"
],
"author": {
"name": "ScriptedAlchemy",
"url": "https://github.com/ScriptedAlchemy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ScriptedAlchemy/devtools-debugger-mcp.git"
},
"bugs": {
"url": "https://github.com/ScriptedAlchemy/devtools-debugger-mcp/issues"
},
"homepage": "https://github.com/ScriptedAlchemy/devtools-debugger-mcp#readme",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.5.0",
"chrome-remote-interface": "^0.33.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/chrome-remote-interface": "^0.31.14",
"@types/node": "^22.7.5"
}
}