AutoBackups/mcp-playwright-server/package.json

36 lines
776 B
JSON

{
"name": "mcp-playwright-server",
"version": "1.0.0",
"description": "MCP Server for Playwright automation and debugging with AutoBackups Flask application",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "npm run build && node dist/index.js"
},
"keywords": [
"mcp",
"playwright",
"automation",
"debugging",
"browser",
"autobackups"
],
"author": "AutoBackups Team",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"playwright": "^1.40.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18"
}
}