claude-code-smart-fork 1.0.1 → 1.0.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/package.json +1 -1
- package/scripts/install.js +2 -0
package/package.json
CHANGED
package/scripts/install.js
CHANGED
|
@@ -12,6 +12,8 @@ function installClaudeHooks() {
|
|
|
12
12
|
|
|
13
13
|
// Find Claude Code configuration directory
|
|
14
14
|
const possiblePaths = [
|
|
15
|
+
// Cross-platform: ~/.claude/settings.json (primary location for Claude Code)
|
|
16
|
+
path.join(os.homedir(), '.claude', 'settings.json'),
|
|
15
17
|
// macOS
|
|
16
18
|
path.join(os.homedir(), 'Library', 'Application Support', 'Claude', 'settings.json'),
|
|
17
19
|
// Linux
|