claude-code-templates 1.29.1 → 1.29.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.
- package/cli-tool/package.json +109 -0
- package/package.json +2 -1
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "claude-code-templates",
|
|
3
|
+
"version": "1.28.13",
|
|
4
|
+
"description": "CLI tool to setup Claude Code configurations with framework-specific commands, automation hooks and MCP Servers for your projects",
|
|
5
|
+
"main": "src/index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"create-claude-config": "bin/create-claude-config.js",
|
|
8
|
+
"claude-code-templates": "bin/create-claude-config.js",
|
|
9
|
+
"claude-code-template": "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"
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"start": "node bin/create-claude-config.js",
|
|
18
|
+
"build:ui": "cd analytics-ui && npm install && npm run build",
|
|
19
|
+
"dev:ui": "cd analytics-ui && npm run dev",
|
|
20
|
+
"prepublishOnly": "npm run build:ui && npm test",
|
|
21
|
+
"test": "jest",
|
|
22
|
+
"test:watch": "jest --watch",
|
|
23
|
+
"test:coverage": "jest --coverage",
|
|
24
|
+
"test:unit": "jest tests/unit",
|
|
25
|
+
"test:integration": "jest tests/integration",
|
|
26
|
+
"test:e2e": "jest tests/e2e",
|
|
27
|
+
"test:analytics": "jest --testPathPattern=analytics",
|
|
28
|
+
"test:commands": "./test-commands.sh",
|
|
29
|
+
"test:detailed": "./test-detailed.sh",
|
|
30
|
+
"test:react": "make test-react",
|
|
31
|
+
"test:vue": "make test-vue",
|
|
32
|
+
"test:node": "make test-node",
|
|
33
|
+
"test:all": "npm run test:coverage && make test",
|
|
34
|
+
"dev:link": "npm link",
|
|
35
|
+
"dev:unlink": "npm unlink -g claude-code-templates",
|
|
36
|
+
"pretest:commands": "npm run dev:link",
|
|
37
|
+
"analytics:start": "node src/analytics.js",
|
|
38
|
+
"analytics:test": "npm run test:analytics",
|
|
39
|
+
"security-audit": "node src/security-audit.js",
|
|
40
|
+
"security-audit:ci": "node src/security-audit.js --ci",
|
|
41
|
+
"security-audit:verbose": "node src/security-audit.js --verbose",
|
|
42
|
+
"security-audit:json": "node src/security-audit.js --json --output=security-report.json"
|
|
43
|
+
},
|
|
44
|
+
"keywords": [
|
|
45
|
+
"claude",
|
|
46
|
+
"claude-code",
|
|
47
|
+
"ai",
|
|
48
|
+
"configuration",
|
|
49
|
+
"template",
|
|
50
|
+
"setup",
|
|
51
|
+
"cli",
|
|
52
|
+
"hooks",
|
|
53
|
+
"automation",
|
|
54
|
+
"javascript",
|
|
55
|
+
"typescript",
|
|
56
|
+
"react",
|
|
57
|
+
"vue",
|
|
58
|
+
"angular",
|
|
59
|
+
"nodejs",
|
|
60
|
+
"python",
|
|
61
|
+
"django",
|
|
62
|
+
"flask",
|
|
63
|
+
"fastapi",
|
|
64
|
+
"rust",
|
|
65
|
+
"go"
|
|
66
|
+
],
|
|
67
|
+
"author": "Claude Code Templates",
|
|
68
|
+
"license": "MIT",
|
|
69
|
+
"dependencies": {
|
|
70
|
+
"@clack/prompts": "^1.5.1",
|
|
71
|
+
"boxen": "^5.1.2",
|
|
72
|
+
"chalk": "^4.1.2",
|
|
73
|
+
"chokidar": "^3.5.3",
|
|
74
|
+
"commander": "^11.1.0",
|
|
75
|
+
"express": "^4.18.2",
|
|
76
|
+
"fs-extra": "^11.1.1",
|
|
77
|
+
"gradient-string": "^2.0.2",
|
|
78
|
+
"inquirer": "^8.2.6",
|
|
79
|
+
"js-yaml": "^4.1.0",
|
|
80
|
+
"open": "^8.4.2",
|
|
81
|
+
"ora": "^5.4.1",
|
|
82
|
+
"qrcode": "^1.5.3",
|
|
83
|
+
"uuid": "^11.1.0",
|
|
84
|
+
"ws": "^8.18.3"
|
|
85
|
+
},
|
|
86
|
+
"engines": {
|
|
87
|
+
"node": ">=14.0.0"
|
|
88
|
+
},
|
|
89
|
+
"repository": {
|
|
90
|
+
"type": "git",
|
|
91
|
+
"url": "git+https://github.com/davila7/claude-code-templates.git"
|
|
92
|
+
},
|
|
93
|
+
"bugs": {
|
|
94
|
+
"url": "https://github.com/davila7/claude-code-templates/issues"
|
|
95
|
+
},
|
|
96
|
+
"homepage": "https://github.com/davila7/claude-code-templates#readme",
|
|
97
|
+
"files": [
|
|
98
|
+
"bin/",
|
|
99
|
+
"src/",
|
|
100
|
+
"components/sandbox/e2b/",
|
|
101
|
+
"components/sandbox/cloudflare/",
|
|
102
|
+
"components/sandbox/docker/",
|
|
103
|
+
"README.md"
|
|
104
|
+
],
|
|
105
|
+
"devDependencies": {
|
|
106
|
+
"jest": "^30.0.4",
|
|
107
|
+
"jest-watch-typeahead": "^3.0.1"
|
|
108
|
+
}
|
|
109
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-templates",
|
|
3
|
-
"version": "1.29.
|
|
3
|
+
"version": "1.29.2",
|
|
4
4
|
"description": "Component templates and tracking system for Claude Code",
|
|
5
5
|
"main": "cli-tool/src/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
"cli-tool/bin/",
|
|
56
56
|
"cli-tool/src/",
|
|
57
57
|
"cli-tool/components/sandbox/",
|
|
58
|
+
"cli-tool/package.json",
|
|
58
59
|
"README.md"
|
|
59
60
|
]
|
|
60
61
|
}
|