ccusage 20.0.0 → 20.0.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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -188,10 +188,10 @@ nix run github:ryoppippi/ccusage -- codex daily --offline
188
188
  nix build github:ryoppippi/ccusage
189
189
  ```
190
190
 
191
- Nix builds embed the LiteLLM pricing file from the locked `litellm-pricing` flake input, so sandboxed builds do not fetch pricing at build time. To update the locked pricing snapshot and refresh the non-Nix Cargo fallback JSON:
191
+ Nix builds embed the LiteLLM pricing file from the locked `litellm` flake input, so sandboxed builds do not fetch pricing at build time. To update the locked pricing snapshot and refresh the non-Nix Cargo fallback JSON:
192
192
 
193
193
  ```bash
194
- nix flake update litellm-pricing
194
+ nix flake update litellm
195
195
  nix run .#update-pricing-fallback
196
196
  nix flake check
197
197
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccusage",
3
- "version": "20.0.0",
3
+ "version": "20.0.1",
4
4
  "description": "Analyze coding (agent) CLI token usage and costs from local data",
5
5
  "homepage": "https://github.com/ryoppippi/ccusage#readme",
6
6
  "bugs": {
@@ -23,11 +23,11 @@
23
23
  ],
24
24
  "type": "module",
25
25
  "optionalDependencies": {
26
- "@ccusage/ccusage-darwin-arm64": "20.0.0",
27
- "@ccusage/ccusage-darwin-x64": "20.0.0",
28
- "@ccusage/ccusage-linux-x64": "20.0.0",
29
- "@ccusage/ccusage-win32-arm64": "20.0.0",
30
- "@ccusage/ccusage-win32-x64": "20.0.0",
31
- "@ccusage/ccusage-linux-arm64": "20.0.0"
26
+ "@ccusage/ccusage-darwin-arm64": "20.0.1",
27
+ "@ccusage/ccusage-darwin-x64": "20.0.1",
28
+ "@ccusage/ccusage-linux-x64": "20.0.1",
29
+ "@ccusage/ccusage-win32-x64": "20.0.1",
30
+ "@ccusage/ccusage-linux-arm64": "20.0.1",
31
+ "@ccusage/ccusage-win32-arm64": "20.0.1"
32
32
  }
33
33
  }