chore: roll Playwright to latest (#1078)

This commit is contained in:
Pavel Feldman
2025-09-24 17:07:37 -07:00
committed by GitHub
parent 24e68fa41d
commit 927e570c18
4 changed files with 55 additions and 20 deletions

View File

@@ -23,7 +23,9 @@
"ftest": "playwright test --project=firefox",
"wtest": "playwright test --project=webkit",
"dtest": "MCP_IN_DOCKER=1 playwright test --project=chromium-docker",
"npm-publish": "npm run clean && npm run test && npm publish"
"npm-publish": "npm run clean && npm run test && npm publish",
"copy-config": "cp ../playwright/packages/playwright/src/mcp/config.d.ts . && perl -pi -e \"s|import type \\* as playwright from 'playwright-core';|import type * as playwright from 'playwright';|\" ./config.d.ts",
"roll": "npm run copy-config && npm run lint"
},
"exports": {
"./package.json": "./package.json",
@@ -33,15 +35,15 @@
}
},
"dependencies": {
"playwright": "1.56.0-alpha-1758292576000",
"playwright-core": "1.56.0-alpha-1758292576000"
"playwright": "1.56.0-alpha-1758750661000",
"playwright-core": "1.56.0-alpha-1758750661000"
},
"bin": {
"mcp-server-playwright": "cli.js"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.17.5",
"@playwright/test": "1.56.0-alpha-1758292576000",
"@playwright/test": "1.56.0-alpha-1758750661000",
"@types/node": "^24.3.0",
"zod-to-json-schema": "^3.24.6"
}