claude-usage-dashboard 1.3.9 → 1.3.10

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.cjs +7 -0
  2. package/package.json +2 -2
package/bin/cli.cjs ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env node
2
+ 'use strict';
3
+ const { join } = require('path');
4
+ const { pathToFileURL } = require('url');
5
+
6
+ const serverPath = join(__dirname, '..', 'server', 'index.js');
7
+ import(pathToFileURL(serverPath).href);
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "claude-usage-dashboard",
3
- "version": "1.3.9",
3
+ "version": "1.3.10",
4
4
  "description": "Dashboard that visualizes Claude Code usage from local session logs",
5
5
  "main": "server/index.js",
6
6
  "bin": {
7
- "claude-usage-dashboard": "bin/cli.sh"
7
+ "claude-usage-dashboard": "bin/cli.cjs"
8
8
  },
9
9
  "files": [
10
10
  "bin/",