Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions apps/ccusage/config-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,12 @@
"description": "Force compact mode for narrow displays (better for screenshots)",
"markdownDescription": "Force compact mode for narrow displays (better for screenshots)",
"default": false
},
"full": {
"type": "boolean",
"description": "Show all columns at full width without truncation (allows horizontal overflow)",
"markdownDescription": "Show all columns at full width without truncation (allows horizontal overflow)",
"default": false
}
},
"additionalProperties": false,
Expand Down Expand Up @@ -195,6 +201,12 @@
"markdownDescription": "Force compact mode for narrow displays (better for screenshots)",
"default": false
},
"full": {
"type": "boolean",
"description": "Show all columns at full width without truncation (allows horizontal overflow)",
"markdownDescription": "Show all columns at full width without truncation (allows horizontal overflow)",
"default": false
},
"instances": {
"type": "boolean",
"description": "Show usage breakdown by project/instance",
Expand Down Expand Up @@ -302,6 +314,12 @@
"description": "Force compact mode for narrow displays (better for screenshots)",
"markdownDescription": "Force compact mode for narrow displays (better for screenshots)",
"default": false
},
"full": {
"type": "boolean",
"description": "Show all columns at full width without truncation (allows horizontal overflow)",
"markdownDescription": "Show all columns at full width without truncation (allows horizontal overflow)",
"default": false
}
},
"additionalProperties": false
Expand Down Expand Up @@ -395,6 +413,12 @@
"markdownDescription": "Force compact mode for narrow displays (better for screenshots)",
"default": false
},
"full": {
"type": "boolean",
"description": "Show all columns at full width without truncation (allows horizontal overflow)",
"markdownDescription": "Show all columns at full width without truncation (allows horizontal overflow)",
"default": false
},
"startOfWeek": {
"type": "string",
"enum": [
Expand Down Expand Up @@ -495,6 +519,12 @@
"markdownDescription": "Force compact mode for narrow displays (better for screenshots)",
"default": false
},
"full": {
"type": "boolean",
"description": "Show all columns at full width without truncation (allows horizontal overflow)",
"markdownDescription": "Show all columns at full width without truncation (allows horizontal overflow)",
"default": false
},
"id": {
"type": "string",
"description": "Load usage data for a specific session ID",
Expand Down Expand Up @@ -592,6 +622,12 @@
"markdownDescription": "Force compact mode for narrow displays (better for screenshots)",
"default": false
},
"full": {
"type": "boolean",
"description": "Show all columns at full width without truncation (allows horizontal overflow)",
"markdownDescription": "Show all columns at full width without truncation (allows horizontal overflow)",
"default": false
},
"active": {
"type": "boolean",
"description": "Show only active block with projections",
Expand Down
2 changes: 2 additions & 0 deletions apps/ccusage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
"@antfu/utils": "catalog:runtime",
"@ccusage/internal": "workspace:*",
"@ccusage/terminal": "workspace:*",
"@hono/node-server": "catalog:runtime",
"@oxc-project/runtime": "catalog:build",
"@praha/byethrow": "catalog:runtime",
"@ryoppippi/eslint-config": "catalog:lint",
Expand All @@ -87,6 +88,7 @@
"fs-fixture": "catalog:testing",
"get-stdin": "catalog:runtime",
"gunshi": "catalog:runtime",
"hono": "catalog:runtime",
"nano-spawn": "catalog:runtime",
"p-limit": "catalog:runtime",
"path-type": "catalog:runtime",
Expand Down
5 changes: 5 additions & 0 deletions apps/ccusage/src/_shared-args.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,11 @@ export const sharedArgs = {
description: 'Force compact mode for narrow displays (better for screenshots)',
default: false,
},
full: {
type: 'boolean',
description: 'Show all columns at full width without truncation (allows horizontal overflow)',
default: false,
},
} as const satisfies Args;

/**
Expand Down
Loading