@ryan_nookpi/pi-extension-claude-mcp-bridge 1.0.0 → 1.1.1

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.
Files changed (2) hide show
  1. package/index.ts +3 -3
  2. package/package.json +14 -3
package/index.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  import fs from "node:fs";
2
2
  import os from "node:os";
3
3
  import path from "node:path";
4
- import type { ExtensionAPI, ExtensionContext, Theme } from "@mariozechner/pi-coding-agent";
5
- import type { TUI } from "@mariozechner/pi-tui";
6
- import { matchesKey, Text, truncateToWidth, visibleWidth } from "@mariozechner/pi-tui";
4
+ import type { ExtensionAPI, ExtensionContext, Theme } from "@earendil-works/pi-coding-agent";
5
+ import type { TUI } from "@earendil-works/pi-tui";
6
+ import { matchesKey, Text, truncateToWidth, visibleWidth } from "@earendil-works/pi-tui";
7
7
  import { Client } from "@modelcontextprotocol/sdk/client/index.js";
8
8
  import { SSEClientTransport } from "@modelcontextprotocol/sdk/client/sse.js";
9
9
  import { StdioClientTransport } from "@modelcontextprotocol/sdk/client/stdio.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ryan_nookpi/pi-extension-claude-mcp-bridge",
3
- "version": "1.0.0",
3
+ "version": "1.1.1",
4
4
  "description": "Bridge Claude Code MCP server configs into pi — auto-discovers tools from stdio/sse/http MCP servers.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -29,10 +29,21 @@
29
29
  "@modelcontextprotocol/sdk": "^1.27.0"
30
30
  },
31
31
  "peerDependencies": {
32
- "@mariozechner/pi-coding-agent": "*",
33
- "@mariozechner/pi-tui": "*",
32
+ "@earendil-works/pi-coding-agent": "*",
33
+ "@earendil-works/pi-tui": "*",
34
34
  "@sinclair/typebox": "*"
35
35
  },
36
+ "peerDependenciesMeta": {
37
+ "@earendil-works/pi-coding-agent": {
38
+ "optional": true
39
+ },
40
+ "@earendil-works/pi-tui": {
41
+ "optional": true
42
+ },
43
+ "@sinclair/typebox": {
44
+ "optional": true
45
+ }
46
+ },
36
47
  "publishConfig": {
37
48
  "access": "public"
38
49
  }