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.
- package/dist/cli.js +1 -9
- 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
|
-
|
|
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;
|