{
  "name": "chrome-devtools-mcp-for-extension",
  "version": "0.26.3",
  "description": "MCP server for Chrome extension development with Web Store automation. Fork of chrome-devtools-mcp with extension-specific tools.",
  "type": "module",
  "bin": "./scripts/cli.mjs",
  "main": "index.js",
  "exports": {
    ".": "./index.js",
    "./plugin-api": "./build/src/plugin-api.js"
  },
  "scripts": {
    "build": "tsc && node --experimental-strip-types --no-warnings=ExperimentalWarning scripts/post-build.ts",
    "dev": "MCP_ENV=development node scripts/mcp-wrapper.mjs",
    "typecheck": "tsc --noEmit",
    "format": "eslint --cache --fix . && prettier --write --cache .",
    "check-format": "eslint --cache . && prettier --check --cache .;",
    "docs": "npm run build && npm run docs: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",
    "diagnose:ui": "echo 'Use diagnose_chatgpt_ui tool via MCP client (Claude Code)'",
    "restart-mcp": "bash scripts/restart-mcp.sh",
    "test": "npm run build && node --require ./build/tests/setup.js --no-warnings=ExperimentalWarning --test-reporter spec --test-force-exit --test \"build/tests/**/*.test.js\"",
    "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\"",
    "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\"",
    "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\"",
    "prepare": "node --experimental-strip-types scripts/prepare.ts",
    "sync-server-json-version": "node  --experimental-strip-types scripts/sync-server-json-version.ts && npm run format"
  },
  "files": [
    "build/src",
    "build/node_modules",
    "README.md",
    "LICENSE",
    "!*.tsbuildinfo"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/usedhonda/chrome-devtools-mcp.git"
  },
  "author": "usedhonda (forked from Google LLC)",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/usedhonda/chrome-devtools-mcp/issues"
  },
  "homepage": "https://github.com/usedhonda/chrome-devtools-mcp#readme",
  "mcpName": "chrome-devtools-extension",
  "keywords": [
    "mcp",
    "chrome",
    "devtools",
    "chrome-extension",
    "webstore",
    "browser-automation",
    "extension-development"
  ],
  "dependencies": {
    "@modelcontextprotocol/sdk": "1.18.1",
    "archiver": "^7.0.1",
    "debug": "4.4.3",
    "puppeteer": "^24.31.0",
    "yargs": "18.0.0"
  },
  "devDependencies": {
    "@eslint/js": "^9.35.0",
    "@stylistic/eslint-plugin": "^5.4.0",
    "@types/archiver": "^6.0.2",
    "@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",
    "chokidar": "^4.0.3",
    "chrome-devtools-frontend": "^1.0.1550444",
    "eslint": "^9.35.0",
    "eslint-import-resolver-typescript": "^4.4.4",
    "eslint-plugin-import": "^2.32.0",
    "globals": "^16.4.0",
    "prettier": "^3.6.2",
    "sinon": "^21.0.0",
    "typescript": "^5.9.2",
    "typescript-eslint": "^8.43.0"
  },
  "engines": {
    "node": ">=22.12.0"
  }
}
