jun-claude-code 0.2.0 → 0.2.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/dist/cli.js +3 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -42,11 +42,13 @@ const chalk_1 = __importDefault(require("chalk"));
42
42
  const copy_1 = require("./copy");
43
43
  const init_context_1 = require("./init-context");
44
44
  const validate_1 = require("./validate");
45
+ // eslint-disable-next-line @typescript-eslint/no-var-requires
46
+ const { version } = require('../package.json');
45
47
  const program = new commander_1.Command();
46
48
  program
47
49
  .name('jun-claude-code')
48
50
  .description('Copy .claude configuration files to ~/.claude (global) or .claude/ (project)')
49
- .version('1.0.0')
51
+ .version(version)
50
52
  .option('-d, --dry-run', 'Preview files to be copied without actually copying')
51
53
  .option('-f, --force', 'Overwrite existing files without confirmation')
52
54
  .option('-p, --project', 'Install to project .claude/ instead of global ~/.claude/')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jun-claude-code",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Claude Code configuration template - copy .claude settings to your project",
5
5
  "main": "dist/index.js",
6
6
  "bin": "dist/cli.js",