-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 976 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 976 Bytes
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
{
"name": "baton",
"version": "1.3.0",
"description": "Conducts coding agents against a GitHub Projects board (Symphony-derived orchestrator)",
"license": "Apache-2.0",
"type": "module",
"bin": {
"baton": "dist/cli.js",
"baton-dashboard": "dist/dashboard/cli.js"
},
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc",
"changeset": "changeset",
"typecheck": "tsc --noEmit",
"format": "biome format --write .",
"lint": "biome check .",
"test": "vitest run",
"triage": "tsx scripts/triage/index.ts",
"review-sync": "tsx scripts/review-sync/index.ts",
"version-packages": "changeset version && npm install --package-lock-only"
},
"dependencies": {
"liquidjs": "^10.21.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@changesets/cli": "^2.31.0",
"@types/node": "^25.0.0",
"tsx": "^4.22.4",
"typescript": "^5.7.0",
"vitest": "^4.0.0"
}
}