/** * Package-owned distribution metadata, stamped into the source so a bundled executable carries * the release identity as ordinary code. Production workflow project preparation derives the * `.kimchi/workflows/package.json` contract exclusively from this object. */ export interface DistributionMetadata { readonly name: string; readonly version: string; readonly packageManager: string; readonly toolchain: { readonly piCodingAgent: string; readonly piTui: string; readonly typebox: string; readonly typesNode: string; readonly typescript: string; readonly vitest: string; }; } export declare const distribution: DistributionMetadata; //# sourceMappingURL=distribution.d.ts.map