agentrecap 0.5.3 → 0.5.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.
package/bin/agentrecap.js CHANGED
@@ -38,7 +38,12 @@ const binaryName = platform === "win32" ? "agentrecap.exe" : "agentrecap";
38
38
  let binary;
39
39
  try {
40
40
  const manifest = require.resolve(`${packageName}/package.json`);
41
- binary = path.join(path.dirname(manifest), "bin", binaryName);
41
+ binary = path.join(
42
+ path.dirname(manifest),
43
+ "bin",
44
+ "agentrecap",
45
+ binaryName,
46
+ );
42
47
  } catch {
43
48
  console.error(
44
49
  `agentrecap does not have an installed binary for ${platform}-${arch}${suffix}.`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentrecap",
3
- "version": "0.5.3",
3
+ "version": "0.5.4",
4
4
  "description": "Analyze local Codex, Claude Code, and OpenCode sessions",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,13 +17,13 @@
17
17
  "node": ">=18"
18
18
  },
19
19
  "optionalDependencies": {
20
- "agentrecap-darwin-arm64": "0.5.3",
21
- "agentrecap-darwin-x64": "0.5.3",
22
- "agentrecap-linux-arm64": "0.5.3",
23
- "agentrecap-linux-x64": "0.5.3",
24
- "agentrecap-linux-arm64-musl": "0.5.3",
25
- "agentrecap-linux-x64-musl": "0.5.3",
26
- "agentrecap-windows-arm64": "0.5.3",
27
- "agentrecap-windows-x64": "0.5.3"
20
+ "agentrecap-darwin-arm64": "0.5.4",
21
+ "agentrecap-darwin-x64": "0.5.4",
22
+ "agentrecap-linux-arm64": "0.5.4",
23
+ "agentrecap-linux-x64": "0.5.4",
24
+ "agentrecap-linux-arm64-musl": "0.5.4",
25
+ "agentrecap-linux-x64-musl": "0.5.4",
26
+ "agentrecap-windows-arm64": "0.5.4",
27
+ "agentrecap-windows-x64": "0.5.4"
28
28
  }
29
29
  }