diff options
| author | Adam Malczewski <[email protected]> | 2026-06-06 23:43:43 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-06-06 23:43:43 +0900 |
| commit | fac44794432928d0341728642fd70eef87837da4 (patch) | |
| tree | 53445547f98bf5e798966efb339ce67cd8ebd20b /package.json | |
| parent | f1409cd46d5a3cfb9002cbcdfd4ab947ac6846aa (diff) | |
| download | dispatch-web-fac44794432928d0341728642fd70eef87837da4.tar.gz dispatch-web-fac44794432928d0341728642fd70eef87837da4.zip | |
Slice 2 unblock: pin wire + transport-contract; mirror contracts
- pin @dispatch/wire + @dispatch/transport-contract (+ ui-contract) as file:
deps @0.1.0; overrides{} workaround for their workspace:* deps (bun can't
resolve workspace: from outside the monorepo)
- add fake-indexeddb (dev) for the upcoming IndexedDB adapter tests
- mirror wire + transport-contract into .dispatch/*.reference.md for headless
agents; point package-agent.md at all three references
- backend-handoff.md: convert to a living FE<->backend seam doc
Verified green: svelte-check 0/0, vitest 91, biome clean, build ok; contract
import smoke-test passes.
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/package.json b/package.json index cf856d3..1ed3b3f 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,13 @@ "check:fix": "biome check --write ." }, "dependencies": { - "@dispatch/ui-contract": "file:../arch-rewrite/packages/ui-contract" + "@dispatch/transport-contract": "file:../arch-rewrite/packages/transport-contract", + "@dispatch/ui-contract": "file:../arch-rewrite/packages/ui-contract", + "@dispatch/wire": "file:../arch-rewrite/packages/wire" + }, + "overrides": { + "@dispatch/ui-contract": "file:../arch-rewrite/packages/ui-contract", + "@dispatch/wire": "file:../arch-rewrite/packages/wire" }, "devDependencies": { "@biomejs/biome": "^2.4.16", @@ -23,6 +29,7 @@ "@testing-library/svelte": "^5.2.0", "@testing-library/user-event": "^14.6.1", "@tsconfig/svelte": "^5.0.0", + "fake-indexeddb": "^6.0.0", "jsdom": "^25.0.0", "svelte": "^5.0.0", "svelte-check": "^4.0.0", |
