@dreki-gg/pi-lsp 0.1.1 → 0.1.2

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,17 @@
1
1
  # @dreki-gg/pi-lsp
2
2
 
3
+ ## 0.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [`0be7b68`](https://github.com/dreki-gg/pi-extensions/commit/0be7b6877e9874b46c756b58c99d599db623ef11) Thanks [@jalbarrang](https://github.com/jalbarrang)! - Migrate TypeBox usage and session replacement flows for Pi 0.69 compatibility.
8
+
9
+ - switch extension imports from `@sinclair/typebox` to `typebox`
10
+ - update package peer dependencies to require `typebox`
11
+ - move subagent `/run-agent` fork-at follow-up work into `withSession` so post-fork operations use the replacement session safely
12
+ - add command argument completions for `/run-agent`, `/delegate-agents`, `/preset`, `/mode`, and `/plan`
13
+ - align local development dependencies with Pi 0.69 for typechecking and compatibility checks
14
+
3
15
  ## 0.1.1
4
16
 
5
17
  ### Patch Changes
@@ -5,7 +5,7 @@
5
5
  */
6
6
 
7
7
  import type { ExtensionAPI } from '@mariozechner/pi-coding-agent';
8
- import { Type } from '@sinclair/typebox';
8
+ import { Type } from 'typebox';
9
9
  import { StringEnum } from '@mariozechner/pi-ai';
10
10
 
11
11
  import type { LspClient } from './client';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dreki-gg/pi-lsp",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
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.64.0",
29
+ "@mariozechner/pi-ai": "^0.69.0",
30
30
  "@types/node": "24",
31
31
  "bun-types": "latest",
32
32
  "oxfmt": "^0.43.0",
@@ -37,6 +37,6 @@
37
37
  "peerDependencies": {
38
38
  "@mariozechner/pi-ai": "*",
39
39
  "@mariozechner/pi-coding-agent": "*",
40
- "@sinclair/typebox": "*"
40
+ "typebox": "*"
41
41
  }
42
42
  }