@contractspec/lib.runtime-sandbox
v3.0.8
Published
**Browser-compatible database abstraction built on PGLite for client-side SQL execution.**
Downloads
1,759
Readme
@contractspec/lib.runtime-sandbox
Browser-compatible database abstraction built on PGLite for client-side SQL execution.
What It Provides
- Layer: lib.
- Consumers: bundles, apps.
src/adapters/contains runtime, provider, or environment-specific adapters.- Related ContractSpec packages include
@contractspec/tool.bun,@contractspec/tool.typescript. src/adapters/contains runtime, provider, or environment-specific adapters.
Installation
npm install @contractspec/lib.runtime-sandbox
or
bun add @contractspec/lib.runtime-sandbox
Usage
Import the root entrypoint from @contractspec/lib.runtime-sandbox, or choose a documented subpath when you only need one part of the package surface.
Architecture
src/adapters/contains runtime, provider, or environment-specific adapters.src/index.tsis the root public barrel and package entrypoint.src/portsis part of the package's public or composition surface.src/typesis part of the package's public or composition surface.src/webis part of the package's public or composition surface.
Public Entry Points
- Export
.resolves through./src/index.ts.
Local Commands
bun run dev— contractspec-bun-build devbun run build— bun run prebuild && bun run build:bundle && bun run build:typesbun run lint— bun run lint:fixbun run lint:check— biome check .bun run lint:fix— biome check --write --unsafe --only=nursery/useSortedClasses . && biome check --write .bun run typecheck— tsc --noEmitbun run publish:pkg— bun publish --tolerate-republish --ignore-scripts --verbosebun run publish:pkg:canary— bun publish:pkg --tag canarybun run clean— rm -rf distbun run build:bundle— contractspec-bun-build transpilebun run build:types— contractspec-bun-build typesbun run prebuild— contractspec-bun-build prebuild
Recent Updates
- Replace eslint+prettier by biomejs to optimize speed.
Notes
- DatabasePort interface is the adapter boundary — consumers depend on the port, not the implementation.
- PGLite adapter must stay browser-compatible (no Node-only APIs).
- Migration schema must remain stable — breaking changes require a migration path.
