-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.52 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
64
65
66
67
68
{
"name": "codiva",
"version": "0.5.4",
"description": "TUI app that runs parallel coding-agent sessions (Claude Code / Codex / Grok) in isolated git worktrees",
"type": "module",
"bin": {
"codiva": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/takecchi/codiva.git"
},
"homepage": "https://github.com/takecchi/codiva#readme",
"bugs": {
"url": "https://github.com/takecchi/codiva/issues"
},
"keywords": [
"claude",
"claude-code",
"claude-agent-sdk",
"codex",
"grok",
"coding-agent",
"tui",
"ink",
"git-worktree",
"ai",
"agent",
"cli"
],
"author": "takecchi",
"engines": {
"node": ">=20"
},
"packageManager": "npm@11.14.1",
"files": [
"dist"
],
"scripts": {
"dev": "tsx src/index.tsx",
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run --coverage",
"test:watch": "vitest",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"spike": "tsx scripts/spike.ts"
},
"license": "MIT",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.214",
"ink": "^7.1.1",
"marked": "^16.4.2",
"react": "^19.2.7",
"string-width": "^8.2.2"
},
"devDependencies": {
"@biomejs/biome": "^2.5.4",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@vitest/coverage-v8": "^4.1.10",
"ink-testing-library": "^4.0.0",
"tsup": "^8.5.1",
"tsx": "^4.23.1",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
}
}