forked from axivo/mcp-lsp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.25 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@axivo/mcp-lsp",
"version": "1.0.5",
"type": "module",
"description": "MCP server for Language Server Protocol integration",
"keywords": [
"code-intelligence",
"lsp",
"language-server-protocol",
"mcp",
"model-context-protocol",
"server"
],
"license": "BSD-3-Clause",
"author": "AXIVO",
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"bin": {
"mcp-lsp": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axivo/mcp-lsp.git"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.0",
"deepmerge-ts": "^7.1.0",
"fast-glob": "^3.3.0",
"find-process": "^2.0.0",
"graceful-fs": "^4.2.0",
"p-limit": "^7.1.0",
"vscode-jsonrpc": "^8.2.0",
"vscode-languageserver-protocol": "^3.17.0",
"zod": "^4.1.0"
},
"devDependencies": {
"@types/graceful-fs": "^4.1.0",
"@types/node": "^24.0.0",
"typescript": ">=5.0.0"
},
"engines": {
"node": ">=24.0.0"
},
"publishConfig": {
"access": "public"
},
"main": "index.js",
"bugs": {
"url": "https://github.com/axivo/mcp-lsp/issues"
},
"homepage": "https://github.com/axivo/mcp-lsp"
}