-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.5 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "cc-templates",
"version": "0.1.0",
"description": "Install Claude Code components with one command",
"type": "module",
"bin": {
"cc-templates": "./bin/index.js"
},
"files": [
"bin/",
"dist/",
"components.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "node scripts/build-catalog.js && tsc",
"lint": "eslint src/",
"test": "node --test test/smoke.test.js",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@inquirer/prompts": "^8.3.0",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"js-yaml": "^4.1.1",
"write-file-atomic": "^7.0.0"
},
"keywords": [
"claude-code",
"anthropic",
"agents",
"hooks",
"skills",
"cli"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/maystudios/cc-templates.git"
},
"bugs": {
"url": "https://github.com/maystudios/cc-templates/issues"
},
"homepage": "https://github.com/maystudios/cc-templates#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^11.0.6",
"@semantic-release/npm": "^13.1.4",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.19.11",
"@types/write-file-atomic": "^4.0.3",
"eslint": "^10.0.2",
"semantic-release": "^24.2.9",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
}
}