{
  "name": "mcp-chrome-scalemaker-bridge",
  "version": "1.0.37",
  "description": "Chrome Native-Messaging host (Node) — scalemaker fork with Force Reconnect + Playwright CDP fallback",
  "main": "dist/index.js",
  "bin": {
    "mcp-chrome-scalemaker-bridge": "./dist/cli.js",
    "mcp-chrome-scalemaker-stdio": "./dist/mcp/mcp-server-stdio.js",
    "scalemaker-install": "./dist/scripts/scalemaker-install.js"
  },
  "files": [
    "dist",
    "!dist/node_path.txt"
  ],
  "engines": {
    "node": ">=14.0.0"
  },
  "preferGlobal": true,
  "keywords": [
    "mcp",
    "chrome",
    "browser"
  ],
  "author": "hangye (upstream), scalemaker-ship-it (scalemaker fork)",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/scalemaker-ship-it/mcp-chrome-scalemaker.git"
  },
  "homepage": "https://github.com/scalemaker-ship-it/mcp-chrome-scalemaker",
  "dependencies": {
    "@fastify/cors": "^11.0.1",
    "@modelcontextprotocol/sdk": "^1.11.0",
    "@types/node-fetch": "2",
    "chalk": "^5.4.1",
    "chrome-devtools-frontend": "^1.0.1299282",
    "commander": "^13.1.0",
    "fastify": "^5.3.2",
    "is-admin": "^4.0.0",
    "node-fetch": "2",
    "pino": "^9.6.0",
    "playwright": "^1.60.0",
    "uuid": "^11.1.0",
    "chrome-mcp-scalemaker-shared": "1.0.37"
  },
  "devDependencies": {
    "@jest/globals": "^29.7.0",
    "@types/chrome": "^0.0.318",
    "@types/jest": "^29.5.14",
    "@types/node": "^22.15.3",
    "@types/supertest": "^6.0.3",
    "@typescript-eslint/parser": "^8.31.1",
    "cross-env": "^7.0.3",
    "husky": "^9.1.7",
    "jest": "^29.7.0",
    "lint-staged": "^15.5.1",
    "nodemon": "^3.1.10",
    "pino-pretty": "^13.0.0",
    "rimraf": "^6.0.1",
    "supertest": "^7.1.0",
    "ts-jest": "^29.3.2",
    "ts-node": "^10.9.2"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,ts}": [
      "eslint --fix",
      "prettier --write"
    ],
    "*.{json,md}": [
      "prettier --write"
    ]
  },
  "scripts": {
    "dev": "nodemon --watch src --ext ts,js,json --ignore dist/ --exec \"npm run build && npm run register:dev\"",
    "build": "ts-node src/scripts/build.ts",
    "test": "jest",
    "test:watch": "jest --watch",
    "lint": "eslint 'src/**/*.{js,ts}'",
    "lint:fix": "eslint 'src/**/*.{js,ts}' --fix",
    "format": "prettier --write 'src/**/*.{js,ts,json}'",
    "register:dev": "node dist/scripts/register-dev.js",
    "postinstall": "node -e \"const f='dist/scripts/postinstall.js';require('fs').existsSync(f)&&require('child_process').execFileSync(process.execPath,[f],{stdio:'inherit'})\""
  }
}