Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/test/mcp/package.json
3520 views
1
{
2
"name": "code-oss-dev-mcp",
3
"version": "0.1.0",
4
"license": "MIT",
5
"main": "./out/main.js",
6
"private": true,
7
"scripts": {
8
"compile": "cd ../automation && npm run compile && cd ../mcp && node ../../node_modules/typescript/bin/tsc",
9
"watch-automation": "cd ../automation && npm run watch",
10
"watch-mcp": "node ../../node_modules/typescript/bin/tsc --watch --preserveWatchOutput",
11
"watch": "npm-run-all -lp watch-automation watch-mcp",
12
"start-stdio": "npm run -s compile && node ./out/stdio.js"
13
},
14
"dependencies": {
15
"@modelcontextprotocol/sdk": "^1.17.3",
16
"@playwright/mcp": "^0.0.37",
17
"cors": "^2.8.5",
18
"express": "^5.1.0",
19
"minimist": "^1.2.8",
20
"ncp": "^2.0.0",
21
"node-fetch": "^2.6.7"
22
},
23
"devDependencies": {
24
"@types/cors": "^2.8.19",
25
"@types/express": "^5.0.3",
26
"@types/ncp": "2.0.1",
27
"@types/node": "22.x",
28
"@types/node-fetch": "^2.5.10",
29
"npm-run-all": "^4.1.5"
30
}
31
}
32
33