initial commit

This commit is contained in:
2026-04-25 21:06:15 -04:00
commit 61bca87bba
12 changed files with 1738 additions and 0 deletions

26
package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "@pi/lsp",
"version": "0.1.0",
"private": true,
"description": "LSP tools for pi: hover, definition, references, completions, symbols, diagnostics.",
"pi": {
"extensions": ["./index.ts"]
},
"type": "module",
"bin": {
"pi-lsp": "./cli.ts"
},
"scripts": {
"lsp": "tsx ./cli.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"vscode-jsonrpc": "^8.2.1",
"vscode-languageserver-protocol": "^3.17.5"
},
"devDependencies": {
"@types/node": "^22.10.0",
"tsx": "^4.19.2",
"typescript": "^6.0.3"
}
}