-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.24 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
{
"name": "batonq",
"version": "0.4.0",
"description": "A baton queue for parallel agents. Coordination as a primitive, not a platform.",
"license": "MIT",
"type": "module",
"author": "Fredrik Salberg",
"homepage": "https://github.com/Salberg87/batonq",
"repository": {
"type": "git",
"url": "git+https://github.com/Salberg87/batonq.git"
},
"bugs": {
"url": "https://github.com/Salberg87/batonq/issues"
},
"keywords": [
"agent",
"claude-code",
"cli",
"task-queue",
"coordination",
"ai-agents",
"sqlite",
"flock"
],
"bin": {
"batonq": "bin/batonq",
"batonq-hook": "bin/batonq-hook",
"batonq-loop": "bin/batonq-loop",
"batonq-tui": "bin/batonq-tui"
},
"files": [
"bin/",
"src/",
"docs/",
"examples/",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"engines": {
"bun": ">=1.0.0"
},
"scripts": {
"test": "bun test",
"test:cov": "bun test --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@types/react": "^19.2.14",
"ink": "^7.0.1",
"ink-text-input": "^6.0.0",
"react": "^19.2.5",
"zod": "^4.3.6"
},
"devDependencies": {
"bun-types": "^1.3.13",
"ink-testing-library": "^4.0.0"
}
}