-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.72 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.72 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
60
61
62
63
64
65
66
67
68
69
{
"name": "cclsp",
"version": "0.7.0",
"description": "MCP server for accessing LSP functionality",
"main": "dist/index.js",
"bin": {
"cclsp": "dist/index.js"
},
"type": "module",
"scripts": {
"build": "bun build --target=node --outdir=dist index.ts",
"dev": "bun run --watch index.ts",
"start": "node dist/index.js",
"test": "bun test",
"test:execution": "RUN_EXECUTION_TESTS=1 bun test src/setup-execution.test.ts",
"test:all": "bun test && bun run test:execution",
"test:manual": "node test_mcp_client.cjs",
"lint": "biome check .",
"lint:fix": "biome check --fix .",
"lint:fix-unsafe": "biome check --fix --unsafe .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build && npm run test:all && npm run typecheck"
},
"keywords": [
"mcp",
"lsp",
"language-server",
"model-context-protocol",
"claude-code"
],
"author": "nano",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ktnyt/cclsp.git"
},
"homepage": "https://github.com/ktnyt/cclsp#readme",
"bugs": {
"url": "https://github.com/ktnyt/cclsp/issues"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE",
"CLAUDE.md",
"cclsp.config.json"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.3",
"@types/inquirer": "^9.0.8",
"ignore": "^7.0.5",
"inquirer": "^12.6.3",
"typescript-language-server": "^4.3.4"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest",
"@types/node": "^24.0.1",
"memfs": "^4.36.3"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18"
}
}