flake-update-20260505
1{
2 "name": "lsp-pi",
3 "version": "1.0.3",
4 "description": "LSP extension for pi-coding-agent - provides language server tool and diagnostics feedback for Dart/Flutter, TypeScript, Vue, Svelte, Python, Go, Kotlin, Swift, Rust",
5 "scripts": {
6 "test": "npx tsx tests/lsp.test.ts",
7 "test:tool": "npx tsx tests/index.test.ts",
8 "test:integration": "npx tsx tests/lsp-integration.test.ts",
9 "test:all": "npm test && npm run test:tool && npm run test:integration"
10 },
11 "keywords": [
12 "lsp",
13 "language-server",
14 "dart",
15 "flutter",
16 "typescript",
17 "vue",
18 "svelte",
19 "python",
20 "go",
21 "kotlin",
22 "swift",
23 "rust",
24 "pi-coding-agent",
25 "extension",
26 "pi-package"
27 ],
28 "author": "",
29 "license": "MIT",
30 "type": "module",
31 "pi": {
32 "extensions": [
33 "./lsp.ts",
34 "./lsp-tool.ts"
35 ]
36 },
37 "dependencies": {
38 "@sinclair/typebox": "^0.34.33",
39 "vscode-languageserver-protocol": "^3.17.5"
40 },
41 "peerDependencies": {
42 "@mariozechner/pi-ai": "^0.50.0",
43 "@mariozechner/pi-coding-agent": "^0.50.0",
44 "@mariozechner/pi-tui": "^0.50.0"
45 },
46 "devDependencies": {
47 "@mariozechner/pi-ai": "^0.50.0",
48 "@mariozechner/pi-coding-agent": "^0.50.0",
49 "@mariozechner/pi-tui": "^0.50.0",
50 "@types/node": "^24.10.2",
51 "tsx": "^4.21.0",
52 "typescript": "^5.9.3"
53 }
54}