forked from executeautomation/mcp-playwright
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "@executeautomation/playwright-mcp-server",
"version": "0.2.6",
"description": "Model Context Protocol servers for Playwright",
"license": "MIT",
"author": "ExecuteAutomation, Ltd (https://executeautomation.com)",
"homepage": "https://executeautomation.github.io/mcp-playwright/",
"bugs": "https://github.com/executeautomation/mcp-playwright/issues",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"playwright-mcp-server": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/executeautomation/mcp-playwright.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.0.3",
"playwright": "1.49.1",
"@playwright/browser-chromium": "1.49.1"
},
"keywords": ["playwright", "automation", "AI", "Claude MCP"],
"devDependencies": {
"@types/node": "^20.10.5",
"shx": "^0.3.4",
"typescript": "^5.6.2"
}
}