claude-code-templates 1.4.2 → 1.5.0

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.
@@ -41,7 +41,10 @@ program
41
41
  .option('-d, --directory <directory>', 'target directory (default: current directory)')
42
42
  .option('-y, --yes', 'skip prompts and use defaults')
43
43
  .option('--dry-run', 'show what would be copied without actually copying')
44
- .option('--command-stats', 'analyze existing Claude Code commands and offer optimization')
44
+ .option('--command-stats, --commands-stats', 'analyze existing Claude Code commands and offer optimization')
45
+ .option('--hook-stats, --hooks-stats', 'analyze existing automation hooks and offer optimization')
46
+ .option('--mcp-stats, --mcps-stats', 'analyze existing MCP server configurations and offer optimization')
47
+ .option('--analytics', 'launch real-time Claude Code analytics dashboard')
45
48
  .action(async (options) => {
46
49
  try {
47
50
  await createClaudeConfig(options);
package/package.json CHANGED
@@ -1,13 +1,17 @@
1
1
  {
2
2
  "name": "claude-code-templates",
3
- "version": "1.4.2",
3
+ "version": "1.5.0",
4
4
  "description": "CLI tool to setup Claude Code configurations with framework-specific commands, automation hooks and MCP Servers for your projects",
5
5
  "main": "src/index.js",
6
6
  "bin": {
7
7
  "create-claude-config": "bin/create-claude-config.js",
8
8
  "claude-code-templates": "bin/create-claude-config.js",
9
9
  "claude-code-template": "bin/create-claude-config.js",
10
- "claude-init": "bin/create-claude-config.js"
10
+ "claude-init": "bin/create-claude-config.js",
11
+ "cctemplates": "bin/create-claude-config.js",
12
+ "cct": "bin/create-claude-config.js",
13
+ "claude-setup": "bin/create-claude-config.js",
14
+ "claude-config": "bin/create-claude-config.js"
11
15
  },
12
16
  "scripts": {
13
17
  "start": "node bin/create-claude-config.js",
@@ -53,7 +57,10 @@
53
57
  "fs-extra": "^11.1.1",
54
58
  "commander": "^11.1.0",
55
59
  "ora": "^5.4.1",
56
- "boxen": "^5.1.2"
60
+ "boxen": "^5.1.2",
61
+ "express": "^4.18.2",
62
+ "chokidar": "^3.5.3",
63
+ "open": "^8.4.2"
57
64
  },
58
65
  "engines": {
59
66
  "node": ">=14.0.0"