@mcp-b/chrome-devtools-mcp 1.5.0 → 1.5.2

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.
Files changed (2) hide show
  1. package/build/src/index.js +0 -0
  2. package/package.json +25 -27
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.0",
3
+ "version": "1.5.2",
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,20 @@
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": "catalog:",
71
- "@mcp-b/global": "workspace:*",
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": "catalog:"
59
+ "zod": "3.25.76"
80
60
  },
81
61
  "devDependencies": {
82
62
  "@eslint/js": "^9.35.0",
83
- "@modelcontextprotocol/sdk": "catalog:",
63
+ "@modelcontextprotocol/sdk": "1.24.3",
84
64
  "@rollup/plugin-commonjs": "^29.0.0",
85
65
  "@rollup/plugin-json": "^6.1.0",
86
66
  "@rollup/plugin-node-resolve": "^16.0.3",
@@ -109,7 +89,7 @@
109
89
  "typescript": "^5.9.2",
110
90
  "typescript-eslint": "^8.43.0",
111
91
  "yargs": "18.0.0",
112
- "zod": "catalog:"
92
+ "zod": "3.25.76"
113
93
  },
114
94
  "engines": {
115
95
  "node": "^20.19.0 || ^22.12.0 || >=23"
@@ -121,5 +101,23 @@
121
101
  "upstream": {
122
102
  "repository": "https://github.com/ChromeDevTools/chrome-devtools-mcp",
123
103
  "mcpName": "io.github.ChromeDevTools/chrome-devtools-mcp"
104
+ },
105
+ "scripts": {
106
+ "build": "tsc && node --experimental-strip-types --no-warnings=ExperimentalWarning scripts/post-build.ts",
107
+ "bundle": "npm run clean && npm run build && rollup -c rollup.config.mjs",
108
+ "check-format": "eslint --cache . && prettier --check --cache .;",
109
+ "clean": "node -e \"require('fs').rmSync('build', {recursive: true, force: true})\"",
110
+ "docs": "npm run build && npm run docs:generate && npm run format",
111
+ "docs:generate": "node --experimental-strip-types scripts/generate-docs.ts",
112
+ "format": "eslint --cache --fix . && prettier --write --cache .",
113
+ "start": "npm run build && node build/src/index.js",
114
+ "start-debug": "DEBUG=mcp:* DEBUG_COLORS=false npm run build && node build/src/index.js",
115
+ "test": "npm run build && node --require ./build/tests/setup.js --no-warnings=ExperimentalWarning --test-reporter spec --test-force-exit --test \"build/tests/**/*.test.js\"",
116
+ "test:node20": "node --require ./build/tests/setup.js --test-reporter spec --test-force-exit --test build/tests",
117
+ "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\"",
118
+ "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\"",
119
+ "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\"",
120
+ "typecheck": "tsc --noEmit",
121
+ "verify-server-json-version": "node --experimental-strip-types scripts/verify-server-json-version.ts"
124
122
  }
125
- }
123
+ }