-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 921 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 921 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "synthetic-data-pipeline-toy",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "A toy synthetic data pipeline showing candidate, review packet, decision data, repair, apply gate, and metrics.",
"engines": {
"node": ">=20.11.0"
},
"scripts": {
"generate:candidates": "node src/generate-candidates.mjs",
"precheck:candidates": "node src/precheck-candidates.mjs",
"build:review-packets": "node src/build-review-packets.mjs",
"draft:decisions": "node src/draft-decisions.mjs",
"repair": "node src/repair.mjs",
"audit:sample": "node src/audit-sample.mjs",
"publish:bundle": "node src/publish.mjs",
"metrics": "node src/metrics.mjs",
"pipeline:run": "pnpm generate:candidates && pnpm precheck:candidates && pnpm build:review-packets && pnpm draft:decisions && pnpm repair && pnpm audit:sample && pnpm publish:bundle && pnpm metrics"
}
}