@nocoo/otter 1.3.4 → 1.3.5

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/bin.js CHANGED
File without changes
package/dist/cli.js CHANGED
@@ -13,7 +13,7 @@ import * as ui from "./ui.js";
13
13
  import { uploadIconsToServer } from "./uploader/icons-server.js";
14
14
  import { uploadSnapshot } from "./uploader/webhook.js";
15
15
  import { exportIcons } from "./utils/icons.js";
16
- const CLI_VERSION = "1.3.4";
16
+ const CLI_VERSION = "1.3.5";
17
17
  const otterConfigDir = join(homedir(), ".config", "otter");
18
18
  const snapshotStore = new SnapshotStore(join(otterConfigDir, "snapshots"));
19
19
  /**
@@ -11,7 +11,7 @@ const TARGETED_FILES = [
11
11
  { path: "stats-cache.json" }, // aggregate usage stats
12
12
  { path: "plugins/installed_plugins.json" }, // plugin inventory
13
13
  { path: "plugins/blocklist.json" }, // plugin blocklist
14
- { path: "history.jsonl", redact: true, maxSize: 2 * 1024 * 1024, slim: true }, // prompt history (excluded in slim mode)
14
+ { path: "history.jsonl", redact: true, maxSize: 5 * 1024 * 1024, slim: true }, // prompt history (excluded in slim mode)
15
15
  ];
16
16
  /**
17
17
  * Collects Claude Code configuration files with targeted, safe collection.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nocoo/otter",
3
- "version": "1.3.4",
3
+ "version": "1.3.5",
4
4
  "description": "Backup and restore your Mac development environment configuration",
5
5
  "type": "module",
6
6
  "bin": {