-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.39 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.39 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
{
"name": "mcp-lsp-driver",
"version": "1.4.0",
"description": "MCP LSP Driver for IDE plugins to easily expose LSP features via an MCP server.",
"type": "module",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./lsp": {
"types": "./dist/lsp/index.d.ts",
"default": "./dist/lsp/index.js"
}
},
"files": ["dist/**/*.js", "dist/**/*.d.ts", "LICENSE"],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"prepublishOnly": "npm run build"
},
"keywords": ["mcp", "lsp", "language-server", "ide", "vscode", "jetbrains"],
"author": "EFLKumo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/OpticLM/mcp-lspdriver-ts"
},
"peerDependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"vscode-languageserver-protocol": "^3.17.5",
"zod": "^4.3.6"
},
"peerDependenciesMeta": {
"vscode-languageserver-protocol": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@types/node": "^25",
"tsup": "^8.5.1",
"typescript": "^5.9",
"vitest": "^4"
},
"engines": {
"node": ">=18.0.0"
}
}