-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 741 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "claude-prompts-root",
"version": "2.1.0",
"private": true,
"description": "Root package for git hooks and workspace management",
"scripts": {
"prepare": "husky || true",
"graphs:render": "bash scripts/render-graphs.sh",
"graphs:validate": "bash scripts/render-graphs.sh --validate",
"sync": "bash scripts/sync-to-cache.sh",
"dev": "npm run sync && echo 'Restart Claude Code to apply hook changes'",
"dev:claude": "bash scripts/dev-claude.sh",
"dev:claude:resume": "bash scripts/dev-claude.sh --resume"
},
"devDependencies": {
"@commitlint/cli": "^20.4.0",
"@commitlint/config-conventional": "^20.4.0",
"husky": "^9.1.7"
},
"dependencies": {
"graphviz": "^0.0.9"
}
}