-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.17 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.17 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
{
"name": "@speedscale/agent-factory",
"version": "0.1.20",
"private": true,
"description": "Reference architecture for a quality agent baseline -> compare -> report loop.",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"check": "tsc --noEmit -p tsconfig.json",
"intake-api": "tsx src/bin/intake-api.ts",
"worker": "tsx src/bin/worker.ts",
"issue-poller": "tsx src/bin/github-issue-poller.ts",
"pr-poller": "tsx src/bin/github-pr-poller.ts",
"bot": "tsx src/bin/bot.ts",
"gate:check": "tsx src/bin/gate-check.ts",
"runs": "tsx src/bin/runs.ts",
"create-demo-fixture": "tsx src/bin/create-demo-fixture.ts",
"demo": "tsx src/bin/demo.ts",
"loop-demo": "tsx src/bin/demo.ts",
"qa-integration": "tsx src/bin/qa-integration.ts",
"planner": "tsx src/bin/planner.ts",
"runner": "tsx src/bin/runner.ts",
"validator": "tsx src/bin/validator.ts",
"run-to-pr": "tsx src/bin/run-to-pr.ts"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^24.0.0",
"tsx": "^4.20.0",
"typescript": "^5.8.0"
},
"dependencies": {
"redis": "^5.8.2",
"yaml": "^2.8.3"
}
}