-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.18 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.18 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
{
"name": "llm-gateway-workspace",
"private": true,
"version": "0.1.0",
"workspaces": [
"packages/*"
],
"scripts": {
"setup": "npm install && npm run doctor",
"build": "npm run -w @stackbilt/llm-gateway build",
"typecheck": "npm run -w @stackbilt/llm-gateway typecheck",
"start": "bash gateway.sh up",
"start:bg": "bash gateway.sh up",
"stop": "bash gateway.sh down",
"status": "bash gateway.sh status",
"logs": "bash gateway.sh logs",
"doctor": "bash gateway.sh doctor",
"gateway": "bash gateway.sh",
"claude": "bash gateway.sh claude",
"codex": "bash gateway.sh codex",
"charter:detect": "charter setup --detect-only --format json",
"charter:setup": "charter setup --preset backend --ci github --yes",
"verify:adf": "charter doctor --adf-only --ci --format json && charter adf evidence --auto-measure --ci --format json",
"charter:doctor": "charter doctor --format json",
"charter:adf:bundle": "charter adf bundle --task \"describe task\" --format json",
"install:global": "bash install-global.sh",
"uninstall:global": "bash uninstall-global.sh"
},
"devDependencies": {
"@stackbilt/cli": "0.12.1"
}
}