@dreki-gg/pi-lsp 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @dreki-gg/pi-lsp
2
2
 
3
+ ## 0.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [`d133c3d`](https://github.com/dreki-gg/pi-extensions/commit/d133c3da917e7e5def568d27d6cde8ae8a6c00d2) Thanks [@jalbarrang](https://github.com/jalbarrang)! - Mark pi peer dependencies as optional so npm does not auto-install pi internals when installing extension packages.
8
+
3
9
  ## 0.1.2
4
10
 
5
11
  ### Patch Changes
@@ -9,7 +9,7 @@
9
9
  * Any LSP server can be added via config.
10
10
  */
11
11
 
12
- import type { ExtensionAPI } from '@mariozechner/pi-coding-agent';
12
+ import type { ExtensionAPI } from '@earendil-works/pi-coding-agent';
13
13
 
14
14
  import { LspClient } from './client';
15
15
  import { loadConfig, scaffoldGlobalConfig, serversForExtension, type LoadedConfig } from './config';
@@ -4,9 +4,9 @@
4
4
  * 11 operations routed to the right server by file extension.
5
5
  */
6
6
 
7
- import type { ExtensionAPI } from '@mariozechner/pi-coding-agent';
7
+ import type { ExtensionAPI } from '@earendil-works/pi-coding-agent';
8
8
  import { Type } from 'typebox';
9
- import { StringEnum } from '@mariozechner/pi-ai';
9
+ import { StringEnum } from '@earendil-works/pi-ai';
10
10
 
11
11
  import type { LspClient } from './client';
12
12
  import {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dreki-gg/pi-lsp",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Language-agnostic LSP code intelligence for pi — diagnostics, hover, definitions, references, symbols, and call hierarchy",
5
5
  "keywords": [
6
6
  "pi-package"
@@ -26,7 +26,7 @@
26
26
  ]
27
27
  },
28
28
  "devDependencies": {
29
- "@mariozechner/pi-ai": "^0.69.0",
29
+ "@earendil-works/pi-ai": "^0.74.0",
30
30
  "@types/node": "24",
31
31
  "bun-types": "latest",
32
32
  "oxfmt": "^0.43.0",
@@ -35,8 +35,19 @@
35
35
  "typescript-language-server": "^5.1.3"
36
36
  },
37
37
  "peerDependencies": {
38
- "@mariozechner/pi-ai": "*",
39
- "@mariozechner/pi-coding-agent": "*",
38
+ "@earendil-works/pi-ai": "*",
39
+ "@earendil-works/pi-coding-agent": "*",
40
40
  "typebox": "*"
41
+ },
42
+ "peerDependenciesMeta": {
43
+ "@earendil-works/pi-ai": {
44
+ "optional": true
45
+ },
46
+ "@earendil-works/pi-coding-agent": {
47
+ "optional": true
48
+ },
49
+ "typebox": {
50
+ "optional": true
51
+ }
41
52
  }
42
53
  }
@@ -1,7 +1,7 @@
1
1
  import { describe, expect, test } from 'bun:test';
2
2
 
3
3
  import { registerLspTool } from '../extensions/lsp/tools';
4
- import type { ToolDefinition } from '@mariozechner/pi-coding-agent';
4
+ import type { ToolDefinition } from '@earendil-works/pi-coding-agent';
5
5
 
6
6
  function captureTool() {
7
7
  let tool: ToolDefinition<any, any> | null = null;