tokentracker-cli 0.5.41 → 0.5.43
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/README.md +17 -0
- package/dashboard/dist/assets/{Card-DRfzP4Sx.js → Card-CVdRLQXL.js} +1 -1
- package/dashboard/dist/assets/{DashboardPage-DTJlu0vA.js → DashboardPage-B81lr9NT.js} +2 -2
- package/dashboard/dist/assets/FadeIn-DGKuFrwh.js +1 -0
- package/dashboard/dist/assets/{LeaderboardPage-C-UbiRj9.js → LeaderboardPage-fIC8UBdE.js} +1 -1
- package/dashboard/dist/assets/{LeaderboardProfilePage-O9zHxOct.js → LeaderboardProfilePage-D85BszWk.js} +1 -1
- package/dashboard/dist/assets/LimitsPage-BTq4-dNq.js +1 -0
- package/dashboard/dist/assets/SettingsPage-il3gO5ET.js +1 -0
- package/dashboard/dist/assets/WidgetsPage-DieOEfKf.js +1 -0
- package/dashboard/dist/assets/download-KyrJclzH.js +1 -0
- package/dashboard/dist/assets/leaderboard-columns-Chfc5tar.js +1 -0
- package/dashboard/dist/assets/{main-B7XobgHh.js → main-BPrBAU5E.js} +201 -185
- package/dashboard/dist/assets/main-Dj-ssGgk.css +1 -0
- package/dashboard/dist/assets/{use-limits-display-prefs-Bjyqn_-B.js → use-limits-display-prefs-D5GxufF1.js} +1 -1
- package/dashboard/dist/assets/use-usage-limits-D3wh10do.js +1 -0
- package/dashboard/dist/index.html +2 -2
- package/dashboard/dist/share.html +2 -2
- package/dashboard/dist/widgets-overview.png +0 -0
- package/package.json +1 -1
- package/dashboard/dist/assets/FadeIn-vYRaQ75G.js +0 -1
- package/dashboard/dist/assets/LimitsPage-2XbTu04V.js +0 -1
- package/dashboard/dist/assets/SettingsPage-CL0yckdt.js +0 -1
- package/dashboard/dist/assets/leaderboard-columns-BEweclwg.js +0 -1
- package/dashboard/dist/assets/main-DSj8vAMc.css +0 -1
package/README.md
CHANGED
|
@@ -52,6 +52,23 @@ tokentracker status # Check hook status
|
|
|
52
52
|
tokentracker doctor # Health check
|
|
53
53
|
```
|
|
54
54
|
|
|
55
|
+
### 🍺 Homebrew (macOS)
|
|
56
|
+
|
|
57
|
+
Prefer `brew`? The official tap ships both the CLI formula and the menu bar app cask:
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
# One-time tap (fetches cask + formula metadata)
|
|
61
|
+
brew tap mm7894215/tokentracker
|
|
62
|
+
|
|
63
|
+
# macOS menu bar app (DMG)
|
|
64
|
+
brew install --cask tokentracker
|
|
65
|
+
|
|
66
|
+
# CLI only
|
|
67
|
+
brew install tokentracker
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
Upgrade with `brew upgrade --cask tokentracker` / `brew upgrade tokentracker`. The tap auto-bumps within an hour of every new release.
|
|
71
|
+
|
|
55
72
|
---
|
|
56
73
|
|
|
57
74
|
## ✨ Features
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{D as r}from"./main-
|
|
1
|
+
import{D as r}from"./main-BPrBAU5E.js";function t({children:i,title:a,subtitle:o,className:s="",bodyClassName:d=""}){return r.jsxs("div",{className:`rounded-xl border border-oai-gray-200 dark:border-oai-gray-800 bg-white dark:bg-oai-gray-900 transition-colors duration-200 ${s}`,children:[(a||o)&&r.jsxs("div",{className:"px-5 py-4 border-b border-oai-gray-200 dark:border-oai-gray-800 transition-colors duration-200",children:[a&&r.jsx("h3",{className:"text-sm font-medium text-oai-gray-500 dark:text-oai-gray-300 uppercase tracking-wide transition-colors duration-200",children:a}),o&&r.jsx("p",{className:"text-sm text-oai-gray-500 dark:text-oai-gray-300 mt-1 transition-colors duration-200",children:o})]}),r.jsx("div",{className:`p-5 ${d}`,children:i})]})}export{t as C};
|