package.json•2.32 kB
{
"name": "mcp-macaco-playwright",
"version": "0.0.1",
"description": "mcp-macaco-playwright - Enhanced Playwright Tools for MCP with CDP Support",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/macacoai/mcp-playwright.git"
},
"homepage": "https://github.com/macacoai/mcp-playwright",
"engines": {
"node": ">=18"
},
"author": {
"name": "Gaston Zarate",
"email": "gaston@macaco.ai",
"url": "https://github.com/macacoai"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"lint": "npm run update-readme && eslint . && tsc --noEmit",
"lint-fix": "eslint . --fix",
"update-readme": "node utils/update-readme.js",
"watch": "tsc --watch",
"test": "playwright test --project=chrome",
"ctest": "playwright test --project=chrome",
"ftest": "playwright test --project=firefox",
"wtest": "playwright test --project=webkit",
"run-server": "node lib/browserServer.js",
"clean": "rm -rf lib",
"publish": "npm publish --access public"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"files": [
"lib/**/*",
"index.js",
"index.d.ts",
"cli.js",
"openapi.json"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.2",
"commander": "^13.1.0",
"cors": "^2.8.5",
"debug": "^4.4.1",
"dotenv": "^17.2.0",
"mime": "^4.0.7",
"playwright": "1.55.1",
"playwright-core": "1.55.1",
"ws": "^8.18.1",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.24.4"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.57.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@playwright/test": "1.55.1",
"@stylistic/eslint-plugin": "^3.0.1",
"@types/cors": "^2.8.19",
"@types/debug": "^4.1.12",
"@types/node": "^22.13.10",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"@typescript-eslint/utils": "^8.26.1",
"esbuild": "^0.20.1",
"eslint": "^9.19.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-notice": "^1.0.0",
"openai": "^5.10.2",
"typescript": "^5.8.2"
},
"bin": {
"macacoai-playwright-mcp": "cli.js"
}
}