2025-03-21 10:58:58 -07:00
|
|
|
{
|
|
|
|
"name": "@playwright/mcp",
|
2025-04-15 15:27:29 -07:00
|
|
|
"version": "0.0.13",
|
2025-03-21 10:58:58 -07:00
|
|
|
"description": "Playwright Tools for MCP",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/microsoft/playwright-mcp.git"
|
|
|
|
},
|
|
|
|
"homepage": "https://playwright.dev",
|
|
|
|
"engines": {
|
|
|
|
"node": ">=18"
|
|
|
|
},
|
|
|
|
"author": {
|
|
|
|
"name": "Microsoft Corporation"
|
|
|
|
},
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
|
|
|
"lint": "eslint .",
|
2025-03-21 13:16:30 -07:00
|
|
|
"watch": "tsc --watch",
|
2025-03-27 09:23:28 -07:00
|
|
|
"test": "playwright test",
|
2025-04-15 13:16:56 -07:00
|
|
|
"ctest": "playwright test --project=chrome",
|
2025-04-17 14:03:13 -07:00
|
|
|
"ftest": "playwright test --project=firefox",
|
|
|
|
"wtest": "playwright test --project=webkit",
|
2025-03-27 09:23:28 -07:00
|
|
|
"clean": "rm -rf lib",
|
2025-03-27 16:55:39 -07:00
|
|
|
"npm-publish": "npm run clean && npm run build && npm run test && npm publish"
|
2025-03-21 10:58:58 -07:00
|
|
|
},
|
|
|
|
"exports": {
|
2025-03-25 14:46:39 -07:00
|
|
|
"./package.json": "./package.json",
|
|
|
|
".": {
|
|
|
|
"types": "./index.d.ts",
|
|
|
|
"default": "./index.js"
|
|
|
|
}
|
2025-03-21 10:58:58 -07:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@modelcontextprotocol/sdk": "^1.6.1",
|
|
|
|
"commander": "^13.1.0",
|
2025-04-01 23:47:53 +02:00
|
|
|
"playwright": "^1.52.0-alpha-1743163434000",
|
|
|
|
"yaml": "^2.7.1",
|
2025-03-21 10:58:58 -07:00
|
|
|
"zod-to-json-schema": "^3.24.4"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@eslint/eslintrc": "^3.2.0",
|
|
|
|
"@eslint/js": "^9.19.0",
|
2025-04-01 23:47:53 +02:00
|
|
|
"@playwright/test": "^1.52.0-alpha-1743163434000",
|
2025-03-21 10:58:58 -07:00
|
|
|
"@stylistic/eslint-plugin": "^3.0.1",
|
2025-04-01 23:47:53 +02:00
|
|
|
"@types/node": "^22.13.10",
|
2025-03-21 10:58:58 -07:00
|
|
|
"@typescript-eslint/eslint-plugin": "^8.26.1",
|
|
|
|
"@typescript-eslint/parser": "^8.26.1",
|
|
|
|
"@typescript-eslint/utils": "^8.26.1",
|
|
|
|
"eslint": "^9.19.0",
|
|
|
|
"eslint-plugin-import": "^2.31.0",
|
|
|
|
"eslint-plugin-notice": "^1.0.0",
|
|
|
|
"typescript": "^5.8.2"
|
|
|
|
},
|
|
|
|
"bin": {
|
2025-03-27 03:04:45 +05:30
|
|
|
"mcp-server-playwright": "cli.js"
|
2025-03-21 10:58:58 -07:00
|
|
|
}
|
|
|
|
}
|