feat(reporting-governance): add package-first portability smoke

This commit is contained in:
Eve
2026-05-08 15:39:56 +08:00
parent 2eaa6e3bb3
commit 54ad955ac2
20 changed files with 2195 additions and 32 deletions

View File

@@ -10,10 +10,15 @@
"./adapters/dispatcher": "./src/adapters/dispatcher.mjs",
"./adapters/bridge-supervisor": "./src/adapters/bridge-supervisor.mjs",
"./adapters/sender-binding": "./src/adapters/sender-binding.mjs",
"./adapters/orchestrator": "./src/adapters/orchestrator.mjs"
"./adapters/orchestrator": "./src/adapters/orchestrator.mjs",
"./package-smoke": "./scripts/package-smoke.mjs"
},
"bin": {
"reporting-governance-package-smoke": "./scripts/package-smoke.mjs"
},
"scripts": {
"test": "node --test test/package-structure.test.mjs test/policy-evaluator.test.mjs test/compatibility-preflight.test.mjs test/profile-artifact.test.mjs test/profile-generator.test.mjs test/decision-runner.test.mjs test/decision-store.test.mjs test/decision-store-runtime.integration.test.mjs test/governance-contract.integration.test.mjs test/watchdog-chain.integration.test.mjs test/runtime-integrated.integration.test.mjs test/exports-boundary.integration.test.mjs"
"test": "node --test test/package-structure.test.mjs test/policy-evaluator.test.mjs test/compatibility-preflight.test.mjs test/profile-artifact.test.mjs test/profile-generator.test.mjs test/decision-runner.test.mjs test/decision-store.test.mjs test/decision-store-runtime.integration.test.mjs test/governance-contract.integration.test.mjs test/watchdog-chain.integration.test.mjs test/runtime-integrated.integration.test.mjs test/exports-boundary.integration.test.mjs",
"smoke": "node ./scripts/package-smoke.mjs --compact"
},
"dependencies": {
"ajv": "^8.17.1",