codemode-lsp 0.1.0
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/LICENSE +21 -0
- package/README.md +130 -0
- package/dist/index.js +46550 -0
- package/package.json +57 -0
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "codemode-lsp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "MCP server exposing a single code-mode tool backed by LSP",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mcp",
|
|
7
|
+
"lsp",
|
|
8
|
+
"typescript",
|
|
9
|
+
"code-mode",
|
|
10
|
+
"modelcontextprotocol"
|
|
11
|
+
],
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"author": "Sai Ashirwad",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/saiashirwad/codemode-lsp.git"
|
|
17
|
+
},
|
|
18
|
+
"bugs": "https://github.com/saiashirwad/codemode-lsp/issues",
|
|
19
|
+
"homepage": "https://github.com/saiashirwad/codemode-lsp#readme",
|
|
20
|
+
"type": "module",
|
|
21
|
+
"bin": {
|
|
22
|
+
"codemode-lsp": "dist/index.js"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist"
|
|
26
|
+
],
|
|
27
|
+
"engines": {
|
|
28
|
+
"node": ">=18"
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"start": "bun run src/index.ts",
|
|
32
|
+
"build": "bun build src/index.ts --target=node --outdir=dist",
|
|
33
|
+
"prepublishOnly": "bun run check && bun run build",
|
|
34
|
+
"generate:types": "bun run scripts/generate-types.ts",
|
|
35
|
+
"eval": "bun run scripts/eval.ts",
|
|
36
|
+
"check": "bun run typecheck && bun run lint && bun test",
|
|
37
|
+
"typecheck": "tsc --noEmit",
|
|
38
|
+
"lint": "biome check .",
|
|
39
|
+
"fix": "biome check --write .",
|
|
40
|
+
"test": "bun test",
|
|
41
|
+
"test:unit": "bun test test/unit",
|
|
42
|
+
"test:integration": "bun test test/integration"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
46
|
+
"acorn": "^8.0.0",
|
|
47
|
+
"typescript": "^5.0.0",
|
|
48
|
+
"typescript-language-server": "^4.0.0",
|
|
49
|
+
"vscode-jsonrpc": "^8.2.0",
|
|
50
|
+
"vscode-languageserver-protocol": "^3.17.0",
|
|
51
|
+
"zod": "^3.25 || ^4.0"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@biomejs/biome": "^2.0.0",
|
|
55
|
+
"@types/bun": "^1.0.0"
|
|
56
|
+
}
|
|
57
|
+
}
|