@mcp-b/chrome-devtools-mcp 1.5.0 → 1.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/src/index.js +0 -0
- package/package.json +26 -27
package/build/src/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcp-b/chrome-devtools-mcp",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "MCP server for Chrome DevTools with WebMCP integration for connecting to website MCP tools",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -47,40 +47,21 @@
|
|
|
47
47
|
"LICENSE",
|
|
48
48
|
"!*.tsbuildinfo"
|
|
49
49
|
],
|
|
50
|
-
"scripts": {
|
|
51
|
-
"build": "tsc && node --experimental-strip-types --no-warnings=ExperimentalWarning scripts/post-build.ts",
|
|
52
|
-
"bundle": "npm run clean && npm run build && rollup -c rollup.config.mjs",
|
|
53
|
-
"check-format": "eslint --cache . && prettier --check --cache .;",
|
|
54
|
-
"clean": "node -e \"require('fs').rmSync('build', {recursive: true, force: true})\"",
|
|
55
|
-
"docs": "npm run build && npm run docs:generate && npm run format",
|
|
56
|
-
"docs:generate": "node --experimental-strip-types scripts/generate-docs.ts",
|
|
57
|
-
"format": "eslint --cache --fix . && prettier --write --cache .",
|
|
58
|
-
"prepare": "node --experimental-strip-types scripts/prepare.ts",
|
|
59
|
-
"start": "npm run build && node build/src/index.js",
|
|
60
|
-
"start-debug": "DEBUG=mcp:* DEBUG_COLORS=false npm run build && node build/src/index.js",
|
|
61
|
-
"test": "npm run build && node --require ./build/tests/setup.js --no-warnings=ExperimentalWarning --test-reporter spec --test-force-exit --test \"build/tests/**/*.test.js\"",
|
|
62
|
-
"test:node20": "node --require ./build/tests/setup.js --test-reporter spec --test-force-exit --test build/tests",
|
|
63
|
-
"test:only": "npm run build && node --require ./build/tests/setup.js --no-warnings=ExperimentalWarning --test-reporter spec --test-force-exit --test --test-only \"build/tests/**/*.test.js\"",
|
|
64
|
-
"test:only:no-build": "node --require ./build/tests/setup.js --no-warnings=ExperimentalWarning --test-reporter spec --test-force-exit --test --test-only \"build/tests/**/*.test.js\"",
|
|
65
|
-
"test:update-snapshots": "npm run build && node --require ./build/tests/setup.js --no-warnings=ExperimentalWarning --test-force-exit --test --test-update-snapshots \"build/tests/**/*.test.js\"",
|
|
66
|
-
"typecheck": "tsc --noEmit",
|
|
67
|
-
"verify-server-json-version": "node --experimental-strip-types scripts/verify-server-json-version.ts"
|
|
68
|
-
},
|
|
69
50
|
"dependencies": {
|
|
70
|
-
"@composio/json-schema-to-zod": "
|
|
71
|
-
"@
|
|
72
|
-
"@modelcontextprotocol/sdk": "catalog:",
|
|
51
|
+
"@composio/json-schema-to-zod": "^0.1.17",
|
|
52
|
+
"@modelcontextprotocol/sdk": "1.24.3",
|
|
73
53
|
"core-js": "3.47.0",
|
|
74
54
|
"debug": "4.4.3",
|
|
75
55
|
"esbuild": "^0.24.2",
|
|
76
56
|
"puppeteer": "24.32.0",
|
|
77
57
|
"puppeteer-core": "24.32.0",
|
|
78
58
|
"yargs": "18.0.0",
|
|
79
|
-
"zod": "
|
|
59
|
+
"zod": "3.25.76",
|
|
60
|
+
"@mcp-b/global": "0.0.0"
|
|
80
61
|
},
|
|
81
62
|
"devDependencies": {
|
|
82
63
|
"@eslint/js": "^9.35.0",
|
|
83
|
-
"@modelcontextprotocol/sdk": "
|
|
64
|
+
"@modelcontextprotocol/sdk": "1.24.3",
|
|
84
65
|
"@rollup/plugin-commonjs": "^29.0.0",
|
|
85
66
|
"@rollup/plugin-json": "^6.1.0",
|
|
86
67
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
@@ -109,7 +90,7 @@
|
|
|
109
90
|
"typescript": "^5.9.2",
|
|
110
91
|
"typescript-eslint": "^8.43.0",
|
|
111
92
|
"yargs": "18.0.0",
|
|
112
|
-
"zod": "
|
|
93
|
+
"zod": "3.25.76"
|
|
113
94
|
},
|
|
114
95
|
"engines": {
|
|
115
96
|
"node": "^20.19.0 || ^22.12.0 || >=23"
|
|
@@ -121,5 +102,23 @@
|
|
|
121
102
|
"upstream": {
|
|
122
103
|
"repository": "https://github.com/ChromeDevTools/chrome-devtools-mcp",
|
|
123
104
|
"mcpName": "io.github.ChromeDevTools/chrome-devtools-mcp"
|
|
105
|
+
},
|
|
106
|
+
"scripts": {
|
|
107
|
+
"build": "tsc && node --experimental-strip-types --no-warnings=ExperimentalWarning scripts/post-build.ts",
|
|
108
|
+
"bundle": "npm run clean && npm run build && rollup -c rollup.config.mjs",
|
|
109
|
+
"check-format": "eslint --cache . && prettier --check --cache .;",
|
|
110
|
+
"clean": "node -e \"require('fs').rmSync('build', {recursive: true, force: true})\"",
|
|
111
|
+
"docs": "npm run build && npm run docs:generate && npm run format",
|
|
112
|
+
"docs:generate": "node --experimental-strip-types scripts/generate-docs.ts",
|
|
113
|
+
"format": "eslint --cache --fix . && prettier --write --cache .",
|
|
114
|
+
"start": "npm run build && node build/src/index.js",
|
|
115
|
+
"start-debug": "DEBUG=mcp:* DEBUG_COLORS=false npm run build && node build/src/index.js",
|
|
116
|
+
"test": "npm run build && node --require ./build/tests/setup.js --no-warnings=ExperimentalWarning --test-reporter spec --test-force-exit --test \"build/tests/**/*.test.js\"",
|
|
117
|
+
"test:node20": "node --require ./build/tests/setup.js --test-reporter spec --test-force-exit --test build/tests",
|
|
118
|
+
"test:only": "npm run build && node --require ./build/tests/setup.js --no-warnings=ExperimentalWarning --test-reporter spec --test-force-exit --test --test-only \"build/tests/**/*.test.js\"",
|
|
119
|
+
"test:only:no-build": "node --require ./build/tests/setup.js --no-warnings=ExperimentalWarning --test-reporter spec --test-force-exit --test --test-only \"build/tests/**/*.test.js\"",
|
|
120
|
+
"test:update-snapshots": "npm run build && node --require ./build/tests/setup.js --no-warnings=ExperimentalWarning --test-force-exit --test --test-update-snapshots \"build/tests/**/*.test.js\"",
|
|
121
|
+
"typecheck": "tsc --noEmit",
|
|
122
|
+
"verify-server-json-version": "node --experimental-strip-types scripts/verify-server-json-version.ts"
|
|
124
123
|
}
|
|
125
|
-
}
|
|
124
|
+
}
|