-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 954 Bytes
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 954 Bytes
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
{
"name": "@narumitw/pi-lsp",
"version": "0.22.0",
"description": "Pi extension that exposes configurable, language-agnostic LSP tools through a shared runner.",
"type": "module",
"license": "MIT",
"private": false,
"keywords": [
"pi-package",
"pi-extension",
"pi",
"lsp",
"language-server-protocol",
"configurable",
"lint",
"diagnostics",
"code-action"
],
"files": [
"src",
"README.md",
"LICENSE"
],
"pi": {
"extensions": [
"./src/pi-lsp.ts"
]
},
"scripts": {
"check": "biome check . && npm run typecheck",
"format": "biome check --write .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"typebox": "^1.3.3"
},
"devDependencies": {
"@biomejs/biome": "2.5.3",
"@earendil-works/pi-coding-agent": "0.80.10",
"@types/node": "26.1.1",
"typescript": "7.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/narumiruna/pi-extensions",
"directory": "extensions/pi-lsp"
}
}