@contractspec/lib.cost-tracking
v3.7.22
Published
API cost tracking and budgeting
Maintainers
Readme
@contractspec/lib.cost-tracking
Website: https://contractspec.io
API cost tracking and budgeting.
What It Provides
- Layer: lib.
- Consumers: bundles.
- Related ContractSpec packages include
@contractspec/tool.bun,@contractspec/tool.typescript. - Related ContractSpec packages include
@contractspec/tool.bun,@contractspec/tool.typescript.
Installation
npm install @contractspec/lib.cost-tracking
or
bun add @contractspec/lib.cost-tracking
Usage
Import the root entrypoint from @contractspec/lib.cost-tracking, or choose a documented subpath when you only need one part of the package surface.
Architecture
src/budget-alert-manager.tsis part of the package's public or composition surface.src/cost-model.tsis part of the package's public or composition surface.src/cost-tracker.tsis part of the package's public or composition surface.src/index.tsis the root public barrel and package entrypoint.src/optimization-recommender.tsis part of the package's public or composition surface.src/types.tsis shared public type definitions.
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 test— bun test --pass-with-no-testsbun 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.
Notes
- Cost calculation logic must stay deterministic — no side effects or external calls during computation.
- Budget threshold types are shared across consumers; changes require coordination.
- Do not introduce floating-point arithmetic where precision matters; use integer cents or a decimal library.
