Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/console/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
},
"devDependencies": {
"@types/mdx": "^2.0.13",
"@types/node": "^25.5.2",
"@types/node": "^26.1.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"typescript": "^6.0.2"
Expand Down
2 changes: 1 addition & 1 deletion apps/site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
},
"devDependencies": {
"@types/mdx": "^2.0.13",
"@types/node": "^25.5.2",
"@types/node": "^26.1.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"typescript": "^6.0.2"
Expand Down
8 changes: 2 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,12 @@
"flyio:env:check": "node scripts/check-flyio-deploy-env.mjs",
"flyio:env:check:test": "node --test scripts/check-flyio-deploy-env.test.mjs",
"stream:no-human-verify": "bash scripts/run-interaction-stream-no-human-verify.sh",
"stream:parity:oracle": "node --test reference-implementation/test/run-interaction-stream-routes.test.js reference-implementation/test/run-interaction-stream-neko-adapter.test.js && pnpm exec tsx 'apps/console/src/app/(console)/syncs/[runId]/stream/stream-keyboard-focus.test.ts'",
"stream:parity:calibrate": "node scripts/stream-playground-parity-calibration.mjs",
"agent-skill:check": "node scripts/sync-agent-skill.mjs --check",
"agent-skill:sync": "node scripts/sync-agent-skill.mjs --write",
"agent-skill:boundary-check": "node --test scripts/agent-skill-boundary.test.mjs",
"spec:check": "node scripts/spec-check.mjs",
"openspec:archive-check": "node scripts/openspec-archive-check.mjs",
"openspec:archive-check:test": "node --test scripts/openspec-archive-check.test.mjs",
"public-tree:hygiene-check": "node scripts/check-public-tree-hygiene.mjs",
"public-tree:hygiene-check:test": "node --test scripts/check-public-tree-hygiene.test.mjs",
"stream-debug:summary": "node scripts/stream-debug-summary.mjs",
"reference-contract:generate": "pnpm --filter @pdpp/reference-contract run generate:all",
"reference-contract:check-generated": "pnpm --filter @pdpp/reference-contract run check:generated",
Expand Down Expand Up @@ -96,8 +92,8 @@
"@pdpp/brand": "workspace:*",
"@semantic-release/exec": "^7.1.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.6.0",
"conventional-changelog-conventionalcommits": "^10.2.1",
"@types/node": "^26.1.1",
"conventional-changelog-conventionalcommits": "^9.3.1",
"lefthook": "^2.1.6",
"pdpp-reference-implementation": "workspace:*",
"semantic-release": "^25.0.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/operator-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
"react-dom": "^19.2.0"
},
"devDependencies": {
"@types/node": "^25.5.2",
"@types/node": "^26.1.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"react": "^19.2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/pdpp-brand-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"react-dom": "^19.2.0"
},
"devDependencies": {
"@types/node": "^25.5.2",
"@types/node": "^26.1.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"react": "^19.2.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/polyfill-connectors/src/provider-pacing.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -526,8 +526,8 @@ test("ProviderPacing §9-C2 IDEAL: near the ceiling the per-success RATE gain is
const fullStepRatios: number[] = [];
while (pacing.currentIntervalMs > ceilingMs) {
pacing.recordSuccess();
const dRate = ratePerMin(pacing.currentIntervalMs) - ratePerMin(prevInterval);
const ratio = dRate / calibratedRateStep;
const dRate: number = ratePerMin(pacing.currentIntervalMs) - ratePerMin(prevInterval);
const ratio: number = dRate / calibratedRateStep;
if (pacing.currentIntervalMs > ceilingMs) {
// A full (un-clamped) step — must be in the tight rate-space band.
fullStepRatios.push(ratio);
Expand Down
90 changes: 42 additions & 48 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading