claude-usage-dashboard 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.
Files changed (2) hide show
  1. package/bin/cli.js +5 -0
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -1,2 +1,7 @@
1
1
  #!/usr/bin/env node
2
+
3
+ // Keep stdin open so the process stays in the terminal foreground
4
+ // (workaround for npx not attaching the child to the foreground process group)
5
+ process.stdin.resume();
6
+
2
7
  import '../server/index.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-usage-dashboard",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Dashboard that visualizes Claude Code usage from local session logs",
5
5
  "main": "server/index.js",
6
6
  "bin": {