package.json•1.39 kB
{
"name": "concurrent-browser-mcp",
"version": "1.5.0",
"description": "A concurrent browser MCP server that supports multiple parallel browser instances",
"main": "dist/index.js",
"type": "module",
"bin": {
"concurrent-browser-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest",
"test:proxy": "node test-proxy.js",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"browser",
"automation",
"playwright",
"concurrent",
"parallel"
],
"author": "sailaoda",
"license": "Apache-2.0",
"homepage": "https://github.com/sailaoda/concurrent-browser-mcp#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sailaoda/concurrent-browser-mcp.git"
},
"bugs": {
"url": "https://github.com/sailaoda/concurrent-browser-mcp/issues"
},
"files": [
"dist/**/*",
"README.md",
"config.example.json"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"playwright": "^1.48.0",
"uuid": "^10.0.0",
"commander": "^12.0.0",
"chalk": "^5.3.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/uuid": "^10.0.0",
"typescript": "^5.6.0",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}