项目文件夹

文件
dependabot[bot] dcb07983c1 chore(deps-dev): bump chrome-devtools-frontend from 1.0.1650035 to 1.0.1652307 in the bundled-devtools group (#2267)
Bumps the bundled-devtools group with 1 update:
[chrome-devtools-frontend](https://github.com/ChromeDevTools/devtools-frontend).

Updates `chrome-devtools-frontend` from 1.0.1650035 to 1.0.1652307
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/ChromeDevTools/devtools-frontend/commit/07482123637227aa4c1afef4b1b80abb66683063"><code>0748212</code></a>
Update DevTools DEPS (trusted)</li>
<li><a
href="https://github.com/ChromeDevTools/devtools-frontend/commit/549a181bfb75e1eaf92031bf076d4ed86593806c"><code>549a181</code></a>
AI: Rename AllToolsContext to AllToolsCapabilities</li>
<li><a
href="https://github.com/ChromeDevTools/devtools-frontend/commit/7b846d861f54d0d774f83a66ef0e5e1bf4b63b5a"><code>7b846d8</code></a>
Update DevTools DEPS (trusted)</li>
<li><a
href="https://github.com/ChromeDevTools/devtools-frontend/commit/406537c2830052261736caa3ba52d46c3f564cba"><code>406537c</code></a>
Roll browser-protocol and CfT</li>
<li><a
href="https://github.com/ChromeDevTools/devtools-frontend/commit/2ab3e3efad59c718110942f6bca06dd62b56f018"><code>2ab3e3e</code></a>
[build] Add generated tsconfig to outputs of generate_css</li>
<li><a
href="https://github.com/ChromeDevTools/devtools-frontend/commit/054563a7e08ead180493561bcbea55b97bb58365"><code>054563a</code></a>
Remove ObjectPropertiesSectionsTreeOutline from
ScopeChainSidebarPain</li>
<li><a
href="https://github.com/ChromeDevTools/devtools-frontend/commit/ff41727b1952f90cf2f6f93e0eb6a200d137cee4"><code>ff41727</code></a>
Fix missing dependency on services/tracing in legacy test_runner</li>
<li><a
href="https://github.com/ChromeDevTools/devtools-frontend/commit/49c3d61f9e548d9984eaf4d52d6c86f4c0c55a88"><code>49c3d61</code></a>
Update DevTools DEPS (trusted)</li>
<li><a
href="https://github.com/ChromeDevTools/devtools-frontend/commit/9d61befc2ac91613d9e0a031cce9a0dcab37ba80"><code>9d61bef</code></a>
Show CSS specificity breakdown in selector tooltip</li>
<li><a
href="https://github.com/ChromeDevTools/devtools-frontend/commit/9bf90e6bd32d553967294c6ba93408ede35bf065"><code>9bf90e6</code></a>
Update generator script to support devtools_keywords</li>
<li>Additional commits viewable in <a
href="https://github.com/ChromeDevTools/devtools-frontend/compare/v1.0.1650035...v1.0.1652307">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=chrome-devtools-frontend&package-manager=npm_and_yarn&previous-version=1.0.1650035&new-version=1.0.1652307)](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>
2026-06-29 12:01:08 +00:00

102 行
3.8 KiB
JSON

{
"name": "chrome-devtools-mcp",
"version": "1.4.0",
"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 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 scripts/append-lighthouse-notices.ts",
"build": "tsc && node 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 update-metrics && npm run format",
"docs:generate": "node scripts/generate-docs.ts",
"start": "npm run build && node build/src/bin/chrome-devtools-mcp.js",
"start-debug": "DEBUG=mcp:* DEBUG_COLORS=false npm run build && node build/src/bin/chrome-devtools-mcp.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 scripts/prepare.ts",
"verify-server-json-version": "node scripts/verify-server-json-version.ts",
"update-lighthouse": "node scripts/update-lighthouse.ts",
"update-metrics": "node scripts/update_metrics.ts",
"verify-npm-package": "node scripts/verify-npm-package.mjs",
"eval": "npm run build && node scripts/eval_gemini.ts",
"count-tokens": "node scripts/count_tokens.ts"
},
"files": [
"build/src",
"LICENSE",
"skills",
"!*.tsbuildinfo",
"!*.js.map"
],
"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": "^2.0.1",
"@modelcontextprotocol/sdk": "1.29.0",
"@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",
"@toon-format/toon": "^2.2.0",
"@types/debug": "^4.1.12",
"@types/filesystem": "^0.0.36",
"@types/node": "^26.0.0",
"@types/semver": "^7.7.1",
"@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.1652307",
"core-js": "3.49.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.4.0",
"prettier": "^3.6.2",
"puppeteer": "25.2.1",
"rollup": "4.62.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-license": "^3.6.0",
"semver": "^7.7.4",
"sinon": "^22.0.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.43.0",
"urlpattern-polyfill": "^10.1.0",
"yargs": "18.0.0"
},
"peerDependencies": {
"@toon-format/toon": "^2.2.0"
},
"peerDependenciesMeta": {
"@toon-format/toon": {
"optional": true
}
},
"engines": {
"node": "^20.19.0 || ^22.12.0 || >=23"
},
"overrides": {
"puppeteer-core": "$puppeteer"
}
}