chromedevtools--chrome-devtools-mcp
eb9468165b
Bumps the bundled-devtools group with 1 update: [chrome-devtools-frontend](https://github.com/ChromeDevTools/devtools-frontend). Updates `chrome-devtools-frontend` from 1.0.1599001 to 1.0.1602348 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ChromeDevTools/devtools-frontend/commit/7475e9f6f5308847d150ad032afe5b08e7d5d260"><code>7475e9f</code></a> Update DevTools DEPS (trusted)</li> <li><a href="https://github.com/ChromeDevTools/devtools-frontend/commit/2145a24a0f37c22b6c00290556fe44358c07687d"><code>2145a24</code></a> [l10n] Update locale files for M147</li> <li><a href="https://github.com/ChromeDevTools/devtools-frontend/commit/8027c6ed2ca18a45d1d4d57c5371d78ab1a6ddad"><code>8027c6e</code></a> Revert "[LiveMetrics] Fix freeze on prerender navigation"</li> <li><a href="https://github.com/ChromeDevTools/devtools-frontend/commit/0130091731a000f009b98996620bb91c3dc304d8"><code>0130091</code></a> Roll browser-protocol and CfT</li> <li><a href="https://github.com/ChromeDevTools/devtools-frontend/commit/c9853f7b87633c59a57ae8152be2dee3ae50b7eb"><code>c9853f7</code></a> Delete obsolete HostConfigThirdPartyCookieControls</li> <li><a href="https://github.com/ChromeDevTools/devtools-frontend/commit/e3e7255e97bac52169d8bac2c6654216fdd29a5a"><code>e3e7255</code></a> Update DevTools DEPS (trusted)</li> <li><a href="https://github.com/ChromeDevTools/devtools-frontend/commit/95d287cc7c6dad1ba459c9cc46646bea9da6635f"><code>95d287c</code></a> [sensors] Migrate 'createDeviceOrientationSection' to Lit</li> <li><a href="https://github.com/ChromeDevTools/devtools-frontend/commit/97a897be2927637ee40b3d38d6136e1f4c3bddd5"><code>97a897b</code></a> [AI] Change the styling of the timeline range pane</li> <li><a href="https://github.com/ChromeDevTools/devtools-frontend/commit/c46eb27afb0da6a000fb250480ca2882f96b591f"><code>c46eb27</code></a> Update What's new content for Chrome 147</li> <li><a href="https://github.com/ChromeDevTools/devtools-frontend/commit/ccd08804a8a3eae9836944406c9c6e665b7afdb5"><code>ccd0880</code></a> AI: Improve AccessibilityAgent preamble and add context tools</li> <li>Additional commits viewable in <a href="https://github.com/ChromeDevTools/devtools-frontend/compare/v1.0.1599001...v1.0.1602348">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
85 行
3.6 KiB
JSON
85 行
3.6 KiB
JSON
{
|
|
"name": "chrome-devtools-mcp",
|
|
"version": "0.20.3",
|
|
"description": "MCP server for Chrome DevTools",
|
|
"type": "module",
|
|
"bin": {
|
|
"chrome-devtools-mcp": "./build/src/bin/chrome-devtools-mcp.js",
|
|
"chrome-devtools": "./build/src/bin/chrome-devtools.js"
|
|
},
|
|
"main": "./build/src/index.js",
|
|
"scripts": {
|
|
"cli:generate": "node --experimental-strip-types scripts/generate-cli.ts",
|
|
"clean": "node -e \"require('fs').rmSync('build', {recursive: true, force: true})\"",
|
|
"bundle": "npm run clean && npm run build && rollup -c rollup.config.mjs && node -e \"require('fs').rmSync('build/node_modules', {recursive: true, force: true})\" && node --experimental-strip-types scripts/append-lighthouse-notices.ts",
|
|
"build": "tsc && node --experimental-strip-types --no-warnings=ExperimentalWarning scripts/post-build.ts",
|
|
"typecheck": "tsc --noEmit",
|
|
"format": "eslint --cache --fix . && prettier --write --cache .",
|
|
"check-format": "eslint --cache . && prettier --check --cache .;",
|
|
"gen": "npm run build && npm run docs:generate && npm run cli:generate && npm run format",
|
|
"docs:generate": "node --experimental-strip-types scripts/generate-docs.ts",
|
|
"start": "npm run build && node build/src/index.js",
|
|
"start-debug": "DEBUG=mcp:* DEBUG_COLORS=false npm run build && node build/src/index.js",
|
|
"test": "npm run build && node scripts/test.mjs",
|
|
"test:no-build": "node scripts/test.mjs",
|
|
"test:only": "npm run build && node scripts/test.mjs --test-only",
|
|
"test:update-snapshots": "npm run build && node scripts/test.mjs --test-update-snapshots",
|
|
"prepare": "node --experimental-strip-types scripts/prepare.ts",
|
|
"verify-server-json-version": "node --experimental-strip-types scripts/verify-server-json-version.ts",
|
|
"update-lighthouse": "node --experimental-strip-types scripts/update-lighthouse.ts",
|
|
"verify-npm-package": "node scripts/verify-npm-package.mjs",
|
|
"eval": "npm run build && node --experimental-strip-types scripts/eval_gemini.ts",
|
|
"count-tokens": "node --experimental-strip-types scripts/count_tokens.ts"
|
|
},
|
|
"files": [
|
|
"build/src",
|
|
"LICENSE",
|
|
"!*.tsbuildinfo"
|
|
],
|
|
"repository": "ChromeDevTools/chrome-devtools-mcp",
|
|
"author": "Google LLC",
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/ChromeDevTools/chrome-devtools-mcp/issues"
|
|
},
|
|
"homepage": "https://github.com/ChromeDevTools/chrome-devtools-mcp#readme",
|
|
"mcpName": "io.github.ChromeDevTools/chrome-devtools-mcp",
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.35.0",
|
|
"@google/genai": "^1.37.0",
|
|
"@modelcontextprotocol/sdk": "1.27.1",
|
|
"@rollup/plugin-commonjs": "^29.0.0",
|
|
"@rollup/plugin-json": "^6.1.0",
|
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
"@stylistic/eslint-plugin": "^5.4.0",
|
|
"@types/debug": "^4.1.12",
|
|
"@types/filesystem": "^0.0.36",
|
|
"@types/node": "^25.0.0",
|
|
"@types/sinon": "^21.0.0",
|
|
"@types/yargs": "^17.0.33",
|
|
"@typescript-eslint/eslint-plugin": "^8.43.0",
|
|
"@typescript-eslint/parser": "^8.43.0",
|
|
"chrome-devtools-frontend": "1.0.1602348",
|
|
"core-js": "3.48.0",
|
|
"debug": "4.4.3",
|
|
"eslint": "^9.35.0",
|
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
"eslint-plugin-import": "^2.32.0",
|
|
"globals": "^17.0.0",
|
|
"lighthouse": "13.0.3",
|
|
"prettier": "^3.6.2",
|
|
"puppeteer": "24.39.1",
|
|
"rollup": "4.59.1",
|
|
"rollup-plugin-cleanup": "^3.2.1",
|
|
"rollup-plugin-license": "^3.6.0",
|
|
"sinon": "^21.0.0",
|
|
"tiktoken": "^1.0.22",
|
|
"typescript": "^5.9.2",
|
|
"typescript-eslint": "^8.43.0",
|
|
"yargs": "18.0.0"
|
|
},
|
|
"engines": {
|
|
"node": "^20.19.0 || ^22.12.0 || >=23"
|
|
}
|
|
}
|