@contractspec/example.service-business-os
v3.7.17
Published
Service Business OS example (clients, quotes, jobs, invoices) for ContractSpec
Readme
@contractspec/example.service-business-os
Website: https://contractspec.io
Service Business OS example (clients, quotes, jobs, invoices) for ContractSpec.
What This Demonstrates
- Multi-entity domain modeling (client, quote, job, invoice, payment).
- Per-entity schema and operations pattern.
- Capability and feature definition patterns.
- Presentation layer and event-driven architecture.
- Handler aggregation.
src/docs/contains docblocks and documentation-facing exports.
Running Locally
From packages/examples/service-business-os:
bun run devbun run buildbun run typecheck
Usage
Use @contractspec/example.service-business-os as a reference implementation, or import its exported surfaces into a workspace that composes ContractSpec examples and bundles.
Architecture
src/clientis part of the package's public or composition surface.src/docs/contains docblocks and documentation-facing exports.src/entities/contains domain entities and value objects.src/events.tsis package-level event definitions.src/example.tsis the runnable example entrypoint.src/handlers/contains handlers or demo adapters wired to contract surfaces.src/index.tsis the root public barrel and package entrypoint.
Public Entry Points
- Export
.resolves through./src/index.ts. - Export
./clientresolves through./src/client/index.ts. - Export
./client/client.operationsresolves through./src/client/client.operations.ts. - Export
./client/client.schemaresolves through./src/client/client.schema.ts. - Export
./docsresolves through./src/docs/index.ts. - Export
./docs/service-business-os.docblockresolves through./src/docs/service-business-os.docblock.ts. - Export
./entitiesresolves through./src/entities/index.ts. - Export
./eventsresolves through./src/events.ts. - Export
./exampleresolves through./src/example.ts. - Export
./handlersresolves through./src/handlers/index.ts. - The package publishes 26 total export subpaths; keep docs aligned with
package.json.
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 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— rimraf dist .turbobun 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.
- Missing contract layers.
Notes
- Works alongside
@contractspec/lib.contracts-spec,@contractspec/lib.schema,@contractspec/tool.bun,@contractspec/tool.typescript.
