项目文件夹

文件
T
browser-automation-bot 22755533b8
publish-on-tag / publish (push) Has been cancelled
chore(main): release chrome-devtools-mcp 0.2.0 (#50)
🤖 I have created a release *beep* *boop*
---


##
[0.2.0](https://github.com/ChromeDevTools/chrome-devtools-mcp/compare/chrome-devtools-mcp-v0.1.0...chrome-devtools-mcp-v0.2.0)
(2025-09-17)


### Features

* add performance_analyze_insight tool.
([#42](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/42))
([21e175b](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/21e175b862c624d7a2d07802141187edf2d2e489))
* support script evaluate arguments
([#40](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/40))
([c663f4d](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/c663f4d7f9c0b868e8b4750f6441525939bfe920))
* use Performance Trace Formatter in trace output
([#36](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/36))
([0cb6147](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/0cb6147b870e17bc3a624e9c6396d963a3e16b44))
* validate uids
([#37](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/37))
([014a8bc](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/014a8bc52ecc58080cedeb8023d44f4a55055a05))


### Bug Fixes

* change profile folder name to browser-profile
([#39](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/39))
([36115d7](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/36115d757abbae0502ffee814f55368d2ca59b9e))
* refresh context based on the browser instance
([#44](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/44))
([93f4579](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/93f4579dd9aca3beef2bd9f2930ddfcc4069c0e3))
* update puppeteer to fix a11y snapshot issues
([#43](https://github.com/ChromeDevTools/chrome-devtools-mcp/issues/43))
([b58f787](https://github.com/ChromeDevTools/chrome-devtools-mcp/commit/b58f787234a34d5fcb01b336f5fb14e1c55ecdd5))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).
2025-09-17 13:19:26 +00:00

62 行
2.4 KiB
JSON

{
"name": "chrome-devtools-mcp",
"version": "0.2.0",
"description": "MCP server for Chrome DevTools",
"type": "module",
"bin": {
"chrome-devtools-mcp": "./build/src/index.js"
},
"main": "index.js",
"scripts": {
"build": "tsc && node --experimental-strip-types scripts/post-build.ts",
"typecheck": "tsc --noEmit",
"format": "eslint --cache --fix . ;prettier --write --cache .",
"check-format": "eslint --cache .; prettier --check --cache .;",
"generate-docs": "npm run build && 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 --require ./build/tests/setup.js --test-reporter spec --test-force-exit --test 'build/tests/**/*.test.js'",
"test:only": "npm run build && node --require ./build/tests/setup.js --test-reporter spec --test-force-exit --test --test-only 'build/tests/**/*.test.js'",
"test:only:no-build": "node --require ./build/tests/setup.js --test-reporter spec --test-force-exit --test --test-only 'build/tests/**/*.test.js'",
"test:update-snapshots": "npm run build && node --require ./build/tests/setup.js --test-force-exit --test --test-update-snapshots 'build/tests/**/*.test.js'",
"prepare": "node --experimental-strip-types scripts/prepare.ts"
},
"files": [
"build/src",
"build/node_modules",
"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",
"dependencies": {
"@modelcontextprotocol/sdk": "1.18.0",
"debug": "4.4.3",
"puppeteer-core": "24.22.0",
"yargs": "18.0.0"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/debug": "^4.1.12",
"@types/filesystem": "^0.0.36",
"@types/node": "^24.3.3",
"@types/sinon": "^17.0.4",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"chrome-devtools-frontend": "1.0.1515796",
"eslint": "^9.35.0",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"puppeteer": "24.22.0",
"sinon": "^21.0.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.43.0"
}
}