tokentracker-cli 0.5.2 → 0.5.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.
@@ -107,8 +107,8 @@
107
107
  ]
108
108
  }
109
109
  </script>
110
- <script type="module" crossorigin src="/assets/main-8JBJiGVQ.js"></script>
111
- <link rel="stylesheet" crossorigin href="/assets/main-Cwn9_aQV.css">
110
+ <script type="module" crossorigin src="/assets/main-DkSKSbQz.js"></script>
111
+ <link rel="stylesheet" crossorigin href="/assets/main-BSjyKFRx.css">
112
112
  </head>
113
113
  <body>
114
114
  <main class="aeo-seed-content" aria-label="Token Tracker AI-readable summary">
@@ -51,8 +51,8 @@
51
51
  "description": "Shareable Token Tracker dashboard snapshot."
52
52
  }
53
53
  </script>
54
- <script type="module" crossorigin src="/assets/main-8JBJiGVQ.js"></script>
55
- <link rel="stylesheet" crossorigin href="/assets/main-Cwn9_aQV.css">
54
+ <script type="module" crossorigin src="/assets/main-DkSKSbQz.js"></script>
55
+ <link rel="stylesheet" crossorigin href="/assets/main-BSjyKFRx.css">
56
56
  </head>
57
57
  <body>
58
58
  <main class="aeo-seed-content" aria-label="Token Tracker share page summary">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tokentracker-cli",
3
- "version": "0.5.2",
3
+ "version": "0.5.5",
4
4
  "description": "Token usage tracker for AI agent CLIs (Claude Code, Codex, Cursor, Kiro, Gemini, OpenCode, OpenClaw)",
5
5
  "main": "src/cli.js",
6
6
  "bin": {
@@ -48,7 +48,7 @@
48
48
  "type": "git",
49
49
  "url": "git+https://github.com/mm7894215/TokenTracker.git"
50
50
  },
51
- "homepage": "https://github.com/mm7894215/TokenTracker#readme",
51
+ "homepage": "https://token.rynn.me",
52
52
  "bugs": {
53
53
  "url": "https://github.com/mm7894215/TokenTracker/issues"
54
54
  },
@@ -72,7 +72,7 @@ const ASCII_LOGO = [
72
72
  ].join("\n");
73
73
 
74
74
  const DIVIDER = "----------------------------------------------";
75
- const DEFAULT_DASHBOARD_URL = "https://www.tokentracker.cc";
75
+ const DEFAULT_DASHBOARD_URL = "https://token.rynn.me";
76
76
 
77
77
  async function cmdInit(argv) {
78
78
  const opts = parseArgs(argv);
@@ -1,5 +1,5 @@
1
- const DEFAULT_BASE_URL = "";
2
- const DEFAULT_DASHBOARD_URL = "https://www.tokentracker.cc";
1
+ const DEFAULT_BASE_URL = "https://b46ug8xu.us-east.insforge.app";
2
+ const DEFAULT_DASHBOARD_URL = "https://token.rynn.me";
3
3
  const DEFAULT_HTTP_TIMEOUT_MS = 20_000;
4
4
 
5
5
  function resolveRuntimeConfig({ cli = {}, config = {}, env = process.env, defaults = {} } = {}) {