-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.05 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.05 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
{
"name": "@codevibesmatter/kata",
"version": "0.5.1",
"description": "Structured workflow kata for Claude Code — modes, phases, tasks, and stop hooks for disciplined AI coding sessions",
"type": "module",
"bin": {
"kata": "kata"
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "bun test src/",
"eval": "bun eval/run.ts"
},
"keywords": [
"claude-code",
"kata",
"workflow",
"cli",
"ai-agent",
"session-management",
"agent-loop",
"modes"
],
"author": "codevibesmatter",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/codevibesmatter/kata.git"
},
"homepage": "https://github.com/codevibesmatter/kata#readme",
"bugs": {
"url": "https://github.com/codevibesmatter/kata/issues"
},
"dependencies": {
"js-yaml": "^4.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.50",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.5",
"tsx": "^4.19.2",
"typescript": "~5.8.3"
}
}