ccclub 0.2.55 → 0.2.56

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/dist/index.js +2 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -1129,10 +1129,10 @@ async function hookCommand() {
1129
1129
  }
1130
1130
 
1131
1131
  // src/index.ts
1132
- var VERSION = "0.2.55";
1132
+ var VERSION = "0.2.56";
1133
1133
  startUpdateCheck(VERSION);
1134
1134
  var program = new Command();
1135
- program.name("ccclub").description("A multiplayer leaderboard for Claude Code").version(VERSION, "-v, -V, --version");
1135
+ program.name("ccclub").description("Claude Code leaderboard among friends").version(VERSION, "-v, -V, --version");
1136
1136
  program.command("rank", { isDefault: true, hidden: true }).description("Show leaderboard").option("-d, --days <days>", "Time window: 7 | 30 | all").addOption(new Option("-p, --period [period]").hideHelp()).option("-g, --group <code>", "Group invite code").option("--global", "Show global public ranking").option("--cache", "Include cache tokens in count").action(rankCommand);
1137
1137
  program.command("init").description("Create a group and start tracking (first-time setup)").action(initCommand);
1138
1138
  program.command("join").description("Join a group with a 6-letter invite code").argument("<invite-code>", "6-character invite code").action(joinCommand);
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "ccclub",
3
- "version": "0.2.55",
3
+ "version": "0.2.56",
4
4
  "type": "module",
5
- "description": "A multiplayer leaderboard for Claude Code",
5
+ "description": "Claude Code leaderboard among friends",
6
6
  "bin": {
7
7
  "ccclub": "dist/index.js"
8
8
  },