40 lines
913 B
JSON
40 lines
913 B
JSON
{
|
|
"name": "pi-lsp-extension",
|
|
"version": "1.3.0",
|
|
"type": "module",
|
|
"description": "Pi coding agent extension for LSP (Language Server Protocol) integration",
|
|
"keywords": [
|
|
"pi-package",
|
|
"extension"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/samfoy/pi-lsp-extension"
|
|
},
|
|
"scripts": {
|
|
"clean": "echo 'nothing to clean'",
|
|
"build": "echo 'nothing to build'",
|
|
"check": "echo 'nothing to check'"
|
|
},
|
|
"pi": {
|
|
"extensions": [
|
|
"./src/index.ts"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"tree-sitter-wasms": "^0.1.13",
|
|
"vscode-languageserver-protocol": "^3.17.5",
|
|
"web-tree-sitter": "^0.24.7"
|
|
},
|
|
"peerDependencies": {
|
|
"@earendil-works/pi-ai": "*",
|
|
"@earendil-works/pi-coding-agent": "*",
|
|
"@earendil-works/pi-tui": "*",
|
|
"@sinclair/typebox": "*"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.5.0"
|
|
}
|
|
}
|