@leynier/ccst 0.3.1 → 0.3.2

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/package.json +2 -2
  2. package/src/index.ts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leynier/ccst",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Claude Code Switch Tools for managing contexts",
5
5
  "keywords": [
6
6
  "claude",
@@ -56,4 +56,4 @@
56
56
  "publishConfig": {
57
57
  "access": "public"
58
58
  }
59
- }
59
+ }
package/src/index.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  #!/usr/bin/env bun
2
2
  import { Command } from "commander";
3
+ import pkg from "../package.json";
3
4
  import { completionsCommand } from "./commands/completions.js";
4
5
  import { configDumpCommand } from "./commands/config/dump.js";
5
6
  import { configLoadCommand } from "./commands/config/load.js";
@@ -30,6 +31,7 @@ const main = async (): Promise<void> => {
30
31
  program
31
32
  .name("ccst")
32
33
  .description("Claude Code Switch Tools")
34
+ .version(pkg.version)
33
35
  .argument("[context]", "context name")
34
36
  .option("-d, --delete", "delete context")
35
37
  .option("-c, --current", "print current context")