mcp-lsp-driver 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "mcp-lsp-driver",
3
+ "version": "0.0.1",
4
+ "description": "MCP LSP Driver for IDE plugins to easily expose LSP features via an MCP server.",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.js",
11
+ "types": "./dist/index.d.ts"
12
+ }
13
+ },
14
+ "files": [
15
+ "dist/**/*.js",
16
+ "dist/**/*.d.ts",
17
+ "README.md",
18
+ "LICENSE"
19
+ ],
20
+ "keywords": [
21
+ "mcp",
22
+ "lsp",
23
+ "language-server",
24
+ "ide",
25
+ "vscode",
26
+ "jetbrains"
27
+ ],
28
+ "author": "",
29
+ "license": "MIT",
30
+ "dependencies": {
31
+ "@modelcontextprotocol/sdk": "^1.25.1",
32
+ "zod": "^4.3.4"
33
+ },
34
+ "devDependencies": {
35
+ "@biomejs/biome": "2.3.10",
36
+ "@types/node": "^22.19.3",
37
+ "typescript": "^5.9.3",
38
+ "vitest": "^4.0.16"
39
+ },
40
+ "engines": {
41
+ "node": ">=18.0.0"
42
+ },
43
+ "scripts": {
44
+ "build": "tsc",
45
+ "test": "vitest run",
46
+ "test:watch": "vitest",
47
+ "test:coverage": "vitest run --coverage",
48
+ "lint": "biome check .",
49
+ "lint:fix": "biome check --write .",
50
+ "format": "biome format --write ."
51
+ }
52
+ }