Files
vscode/test/mcp/package.json
Tyler James Leonhardt 14077dbc5b Inject alpha playwright in to our automation in MCP case (#262564)
This fixes things for MCP... with a hack. But Playwright is not interested in having interop between Playwright & Playwright MCP atm... so this is the best we can do for now.
2025-08-20 21:02:18 +00:00

33 lines
1.0 KiB
JSON

{
"name": "code-oss-dev-mcp",
"version": "0.1.0",
"license": "MIT",
"main": "./out/main.js",
"private": true,
"scripts": {
"compile": "cd ../automation && npm run compile && cd ../mcp && node ../../node_modules/typescript/bin/tsc",
"watch-automation": "cd ../automation && npm run watch",
"watch-mcp": "node ../../node_modules/typescript/bin/tsc --watch --preserveWatchOutput",
"watch": "npm-run-all -lp watch-automation watch-mcp",
"start-http": "npm run -s compile && node ./out/main.js",
"start-stdio": "npm run -s compile && node ./out/stdio.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.3",
"@playwright/mcp": "^0.0.34",
"cors": "^2.8.5",
"express": "^5.1.0",
"minimist": "^1.2.8",
"ncp": "^2.0.0",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/ncp": "2.0.1",
"@types/node": "22.x",
"@types/node-fetch": "^2.5.10",
"npm-run-all": "^4.1.5"
}
}