-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 3.13 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 3.13 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "noema",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "npm@11.17.0",
"engines": {
"node": ">=22"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "24.19.0",
"onFail": "error"
},
"packageManager": {
"name": "npm",
"version": "11.17.0",
"onFail": "error"
}
},
"allowScripts": {
"esbuild@0.28.1": true,
"fsevents@2.3.3": false,
"workerd@1.20260625.1": true
},
"scripts": {
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"kpi:compute": "node scripts/compute-kpi.mjs",
"kpi:collect": "bash scripts/collect-kpi-logs.sh",
"kpi:check": "node scripts/check-kpi.mjs",
"kpi:alerts": "node scripts/evaluate-observability-alerts.mjs",
"kpi:verify": "node scripts/kpi-gate.mjs",
"kpi:verify:strict": "node scripts/kpi-gate.mjs --strict --require-window-days 30",
"smoke:check": "bash scripts/smoke-readiness.sh",
"release:evidence": "node scripts/release-evidence.mjs",
"release:publication-receipt": "node scripts/release-publication-receipt.mjs",
"deployment:evidence": "node scripts/deployment-evidence.mjs",
"release:verify": "npm run typecheck && npm run test && npm run security:scan && npm run kpi:verify && npm run acquisition:manifest && npm run acquisition:integrity",
"release:verify:strict": "npm run typecheck && npm run test && npm run security:scan && npm run kpi:verify:strict && npm run acquisition:manifest && npm run acquisition:integrity",
"security:scan": "npm audit --audit-level=high",
"security:evidence": "node scripts/security-validation-evidence.mjs",
"security:private-reporting-audit": "node scripts/private-vulnerability-reporting-audit.mjs",
"test": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"governance:audit": "node scripts/main-governance-audit.mjs",
"operations:preflight": "node scripts/maintainer-app-readiness.mjs",
"operations:workflow-registry-disable": "node scripts/workflow-registry-live-disable.mjs",
"operations:runner-assignment": "node scripts/actions-runner-assignment-audit.mjs",
"operations:external-scheduler-evidence": "node scripts/external-scheduler-evidence-audit.mjs",
"production:governance": "node scripts/production-environment-governance-audit.mjs",
"production:preflight": "node scripts/production-evidence-preflight.mjs",
"acquisition:deployment-evidence": "node scripts/acquisition-deployment-evidence-audit.mjs",
"acquisition:integrity": "node scripts/acquisition-data-room-integrity-audit.mjs",
"acquisition:audit": "npm run acquisition:integrity && node scripts/acquisition-readiness-audit.mjs && npm run acquisition:deployment-evidence",
"acquisition:manifest": "node scripts/acquisition-data-room-manifest.mjs",
"readiness:audit": "node scripts/saleable-readiness-audit.mjs"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260630.0",
"@vitest/coverage-v8": "^4.1.9",
"typescript": "^5.9.0",
"vitest": "^4.1.9",
"wrangler": "^4.25.0"
},
"overrides": {
"sharp": "0.35.3",
"postcss": "^8.5.18",
"undici": "7.29.0"
}
}