package.json•880 B
{
"name": "lsp-mcp-server",
"version": "0.2.0",
"description": "MCP server for Language Server Protocol (LSP) integration, providing hover information, code completions, diagnostics, and code actions with resource-based access",
"license": "MIT",
"type": "module",
"bin": {
"lsp-mcp-server": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"watch": "tsc --watch",
"test": "npm run test:typescript && npm run test:prompts",
"test:typescript": "node test/typescript-lsp.test.js",
"test:prompts": "node test/prompts.test.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@types/node": "^22",
"typescript": "^5.3.3",
"typescript-language-server": "^4.3.4"
}
}