Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/test/mcp/package.json
5241 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-all2 -lp watch-automation watch-mcp",
12
"start-stdio": "echo 'Starting vscode-automation-mcp... For customization and troubleshooting, see ./test/mcp/README.md' && npm ci && npm run -s compile && node ./out/stdio.js"
13
},
14
"dependencies": {
15
"@modelcontextprotocol/sdk": "1.26.0",
16
"minimist": "^1.2.8",
17
"ncp": "^2.0.0",
18
"node-fetch": "^2.6.7"
19
},
20
"devDependencies": {
21
"@types/ncp": "2.0.1",
22
"@types/node": "22.x",
23
"@types/node-fetch": "^2.5.10",
24
"npm-run-all2": "^8.0.4"
25
}
26
}
27
28