ghost-bridge 0.2.0 → 0.2.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/dist/cli.js +1 -9
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -5454,16 +5454,8 @@ var require_lib = __commonJS({
5454
5454
  import path from "path";
5455
5455
  import os2 from "os";
5456
5456
  function getClaudeConfigPath() {
5457
- const platform = os2.platform();
5458
5457
  const homeDir = os2.homedir();
5459
- if (platform === "win32") {
5460
- return path.join(process.env.APPDATA, "Claude", "claude.json");
5461
- } else if (platform === "darwin") {
5462
- const appSupportPath = path.join(homeDir, "Library", "Application Support", "Claude", "claude.json");
5463
- return path.join(homeDir, "Library", "Application Support", "Claude", "claude_desktop_config.json");
5464
- } else {
5465
- return path.join(homeDir, ".config", "Claude", "claude_desktop_config.json");
5466
- }
5458
+ return path.join(homeDir, ".claude.json");
5467
5459
  }
5468
5460
  function getExtensionPath() {
5469
5461
  const __filename2 = new URL(import.meta.url).pathname;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ghost-bridge",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Ghost Bridge: Zero-restart Chrome debugger bridge for Claude MCP. Includes CLI for easy setup.",