open-usage 0.13.0 → 0.13.1
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 +2 -2
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -136,7 +136,7 @@ OPEN USAGE v0.4.0 available ▏ 3 providers ▏ ✓ all clear
|
|
|
136
136
|
```
|
|
137
137
|
|
|
138
138
|
Update with the same command that installed it - `bun install -g open-usage@latest`, or the npm, pnpm or yarn equivalent.
|
|
139
|
-
The check runs
|
|
139
|
+
The check runs on every launch, and [Configuration](#configuration) below covers switching it off.
|
|
140
140
|
|
|
141
141
|
## What it reads
|
|
142
142
|
|
|
@@ -175,7 +175,7 @@ It also reads `~/.claude.json`, but only the `cachedUsageUtilization` block Clau
|
|
|
175
175
|
Nothing is written outside its own config directory, and there is no telemetry or analytics of any kind.
|
|
176
176
|
It makes two outbound requests of its own accord.
|
|
177
177
|
One is to `opencode.ai`, and only if you opt in by configuring the cookie below.
|
|
178
|
-
The other asks `registry.npmjs.org` whether a newer version has been published, so an installed copy can tell you it is out of date - it sends nothing but the request,
|
|
178
|
+
The other asks `registry.npmjs.org` whether a newer version has been published, so an installed copy can tell you it is out of date - it sends nothing but the request, gives up after 1.5 seconds, and stays silent on any failure.
|
|
179
179
|
Set `OPEN_USAGE_NO_UPDATE_CHECK` to switch it off.
|
|
180
180
|
|
|
181
181
|
OpenCode Go does not publish per-account limits, so its percentages are local estimates and are labelled as such in the UI.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "open-usage",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.1",
|
|
4
4
|
"description": "A terminal dashboard for unified AI plan usage across Claude Code, Codex, and OpenCode Go",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "GPL-3.0-only",
|
|
@@ -55,10 +55,10 @@
|
|
|
55
55
|
"typescript": "^5"
|
|
56
56
|
},
|
|
57
57
|
"optionalDependencies": {
|
|
58
|
-
"@open-usage/darwin-arm64": "0.13.
|
|
59
|
-
"@open-usage/linux-arm64": "0.13.
|
|
60
|
-
"@open-usage/linux-x64": "0.13.
|
|
61
|
-
"@open-usage/win32-arm64": "0.13.
|
|
62
|
-
"@open-usage/win32-x64": "0.13.
|
|
58
|
+
"@open-usage/darwin-arm64": "0.13.1",
|
|
59
|
+
"@open-usage/linux-arm64": "0.13.1",
|
|
60
|
+
"@open-usage/linux-x64": "0.13.1",
|
|
61
|
+
"@open-usage/win32-arm64": "0.13.1",
|
|
62
|
+
"@open-usage/win32-x64": "0.13.1"
|
|
63
63
|
}
|
|
64
64
|
}
|