ccusage 0.1.2 → 0.1.3

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 CHANGED
@@ -30,10 +30,10 @@ Run directly without installation:
30
30
 
31
31
  ```bash
32
32
  # Using npx
33
- npx ccusage@latest report daily
33
+ npx ccusage@latest daily
34
34
 
35
35
  # Using bunx
36
- bunx ccusage report daily
36
+ bunx ccusage daily
37
37
  ```
38
38
 
39
39
  ### Local Installation
@@ -46,7 +46,7 @@ npm install -g ccusage
46
46
  bun install -g ccusage
47
47
 
48
48
  # Then run
49
- ccusage report daily
49
+ ccusage daily
50
50
  ```
51
51
 
52
52
  ### Development Setup
@@ -71,18 +71,18 @@ Shows token usage and costs aggregated by date:
71
71
 
72
72
  ```bash
73
73
  # Show all daily usage
74
- ccusage report daily
75
- # or: npx ccusage@latest report daily
76
- # or: bunx ccusage report daily
74
+ ccusage daily
75
+ # or: npx ccusage@latest daily
76
+ # or: bunx ccusage daily
77
77
 
78
78
  # Filter by date range
79
- ccusage report daily --since 20250525 --until 20250530
79
+ ccusage daily --since 20250525 --until 20250530
80
80
 
81
81
  # Use custom Claude data directory
82
- ccusage report daily --path /custom/path/to/.claude
82
+ ccusage daily --path /custom/path/to/.claude
83
83
 
84
84
  # Output in JSON format
85
- ccusage report daily --json
85
+ ccusage daily --json
86
86
  ```
87
87
 
88
88
  ### Session Report
@@ -91,16 +91,16 @@ Shows usage grouped by conversation sessions, sorted by cost:
91
91
 
92
92
  ```bash
93
93
  # Show all sessions
94
- ccusage report session
94
+ ccusage session
95
95
 
96
96
  # Filter sessions by last activity date
97
- ccusage report session --since 20250525
97
+ ccusage session --since 20250525
98
98
 
99
99
  # Combine filters
100
- ccusage report session --since 20250525 --until 20250530 --path /custom/path
100
+ ccusage session --since 20250525 --until 20250530 --path /custom/path
101
101
 
102
102
  # Output in JSON format
103
- ccusage report session --json
103
+ ccusage session --json
104
104
  ```
105
105
 
106
106
  ### Options
package/dist/index.js CHANGED
@@ -6817,7 +6817,7 @@ const consola = createConsola();
6817
6817
  //#endregion
6818
6818
  //#region package.json
6819
6819
  var name = "ccusage";
6820
- var version = "0.1.2";
6820
+ var version = "0.1.3";
6821
6821
  var description = "Usage analysis tool for Claude Code";
6822
6822
 
6823
6823
  //#endregion
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccusage",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "author": "ryoppippi <ryoppippi.el@gmail.com> (https://github.com/ryoppippi)",
5
5
  "license": "MIT",
6
6
  "funding": "https://github.com/ryoppippi/ccusage?sponsor=1",