forked from telus-labs/stagecraft
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.57 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
{
"name": "stagecraft",
"version": "0.9.0",
"private": true,
"description": "Stagecraft — a model-agnostic AI dev team pipeline across Claude Code, Codex, and Gemini CLI. Staged work, multi-host peer review, audit gates.",
"bin": {
"devteam": "bin/devteam"
},
"scripts": {
"test": "node --test tests/*.test.js",
"consistency": "node scripts/consistency.js",
"lint": "eslint .",
"visualize": "node scripts/visualize.js",
"pr-pack": "node scripts/pr-pack.js",
"pr-publish": "node scripts/pr-publish.js",
"dashboard": "node scripts/dashboard.js",
"dashboard:cost": "node scripts/dashboard.js --view cost --by host",
"performance": "node scripts/performance.js",
"routing:suggest": "node scripts/routing-suggest.js",
"budget": "node scripts/budget.js",
"release:check": "node scripts/release.js check",
"release:notes": "node scripts/release.js notes",
"docs:generate": "node scripts/docs-generate.js"
},
"dependencies": {
"@opentelemetry/api": "~1.9.0",
"@opentelemetry/exporter-trace-otlp-http": "~0.219.0",
"@opentelemetry/resources": "~2.8.0",
"@opentelemetry/sdk-trace-base": "~2.8.0",
"@opentelemetry/sdk-trace-node": "~2.8.0",
"@opentelemetry/semantic-conventions": "~1.28.0",
"js-yaml": "^4.2.0"
},
"optionalDependencies": {
"@huggingface/transformers": "^4.2.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"eslint": "^9.0.0",
"eslint-plugin-security": "^4.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"os": [
"darwin",
"linux",
"win32"
]
}