package.json•906 B
{
"name": "vscode-simple-browser-mcp",
"version": "1.0.0",
"type": "module",
"main": "./build/index.js",
"bin": {
"vscode-simple-browser-mcp": "./build/index.js"
},
"scripts": {
"build": "tsc && chmod +x build/index.js",
"dev": "tsc --watch",
"start": "node build/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"build"
],
"keywords": [
"mcp",
"vscode",
"simple-browser",
"web-automation",
"console-logs"
],
"author": "",
"license": "ISC",
"description": "Model Context Protocol server for interacting with VS Code Simple Browser - enables website interaction and console log monitoring",
"devDependencies": {
"@types/node": "^22.15.29",
"@types/vscode": "^1.100.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.25.45"
}
}