{
  "name": "mcp-webdriverio",
  "version": "1.0.5",
  "description": "A Message Control Protocol (MCP) server implementation for WebdriverIO, enabling remote browser automation through a message-based interface",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "README.md",
    "PACKAGE.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "start": "node dist/index.js",
    "pretest": "npm run build",
    "test": "NODE_OPTIONS='--loader ts-node/esm' mocha './tests/**/*.spec.ts'",
    "test:watch": "mocha --require ts-node/register --watch './tests/**/*.spec.ts'",
    "prepare": "npm run build",
    "prepublishOnly": "npm test",
    "preversion": "npm test",
    "version": "npm run build && git add -A dist",
    "postversion": "git push && git push --tags"
  },
  "keywords": [
    "webdriverio",
    "automation",
    "testing",
    "browser",
    "selenium",
    "mcp",
    "protocol"
  ],
  "author": "Hirok Sarker",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hiroksarker/mcp-webdriverio.git"
  },
  "bugs": {
    "url": "https://github.com/hiroksarker/mcp-webdriverio/issues"
  },
  "homepage": "https://github.com/hiroksarker/mcp-webdriverio#readme",
  "dependencies": {
    "cors": "^2.8.5",
    "express": "^4.18.2",
    "uuid": "^9.0.0",
    "webdriverio": "^8.0.0",
    "zod": "^3.25.7"
  },
  "devDependencies": {
    "@types/archiver": "^6.0.3",
    "@types/chai": "^4.3.4",
    "@types/cors": "^2.8.13",
    "@types/express": "^4.17.17",
    "@types/mocha": "^10.0.1",
    "@types/uuid": "^9.0.1",
    "chai": "^4.3.7",
    "mocha": "^10.2.0",
    "ts-node": "^10.9.1",
    "typescript": "^5.0.4"
  },
  "engines": {
    "node": ">=14.0.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
