-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.36 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": "pi-lsp-client",
"version": "0.1.0",
"description": "Language Server Protocol integration for pi-mono coding-agent. Ports omo's LSP tool stack as a pi extension with shared server pool, refCount lifecycle, idle/init reaping, typed crash retry, and a /lsp inspector.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/code-yeongyu/pi-lsp-client",
"repository": {
"type": "git",
"url": "git+https://github.com/code-yeongyu/pi-lsp-client.git"
},
"keywords": [
"pi",
"pi-mono",
"pi-coding-agent",
"extension",
"lsp",
"language-server-protocol",
"diagnostics",
"code-intelligence"
],
"pi": {
"extensions": [
"./src/index.ts"
]
},
"scripts": {
"test": "vitest --run",
"test:integration": "vitest --run test/integration",
"test:watch": "vitest",
"typecheck": "tsgo --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"check": "tsgo --noEmit && biome check ."
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*"
},
"dependencies": {
"vscode-jsonrpc": "^8.2.1"
},
"devDependencies": {
"@biomejs/biome": "2.5.5",
"@types/node": "^22.10.5",
"@typescript/native-preview": "^7.0.0-dev.20260120.1",
"typescript": "^7.0.2",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=20.0.0"
}
}