package.json•1.11 kB
{
"name": "devserver-mcp",
"version": "1.0.0",
"description": "MCP server for monitoring development server output with intelligent error categorization",
"type": "module",
"main": "dist/server.js",
"bin": {
"devserver-mcp": "dist/server.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/server.js",
"test": "vitest",
"test:watch": "vitest --watch",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"mcp",
"model-context-protocol",
"development",
"monitoring",
"error-tracking",
"vite",
"svelte",
"typescript"
],
"author": "Tristan Brotherton",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.5",
"zod": "^3.23.8",
"chokidar": "^3.6.0",
"yaml": "^2.5.1"
},
"devDependencies": {
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"eslint": "^9.11.1",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"engines": {
"node": ">=18.0.0"
}
}