mirror of
https://github.com/microsoft/playwright-mcp.git
synced 2025-07-26 08:32:26 +08:00

This PR updates the binary name in `package.json` from `mcp` to `mcp-server-playwright` as requested in issue #33. The change makes the binary name more specific, avoiding conflicts with other MCP servers and improving usability for global installations. Fixes #33
54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"name": "@playwright/mcp",
|
|
"version": "0.0.3",
|
|
"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 .",
|
|
"watch": "tsc --watch",
|
|
"test": "playwright test"
|
|
},
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"types": "./index.d.ts",
|
|
"default": "./index.js"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.6.1",
|
|
"commander": "^13.1.0",
|
|
"playwright": "1.52.0-alpha-1743011787000",
|
|
"zod-to-json-schema": "^3.24.4"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3.2.0",
|
|
"@eslint/js": "^9.19.0",
|
|
"@playwright/test": "1.52.0-alpha-1743011787000",
|
|
"@stylistic/eslint-plugin": "^3.0.1",
|
|
"@typescript-eslint/eslint-plugin": "^8.26.1",
|
|
"@typescript-eslint/parser": "^8.26.1",
|
|
"@typescript-eslint/utils": "^8.26.1",
|
|
"@types/node": "^22.13.10",
|
|
"eslint": "^9.19.0",
|
|
"eslint-plugin-import": "^2.31.0",
|
|
"eslint-plugin-notice": "^1.0.0",
|
|
"typescript": "^5.8.2"
|
|
},
|
|
"bin": {
|
|
"mcp-server-playwright": "cli.js"
|
|
}
|
|
}
|