UNPKG

eve

Version:

Filesystem-first framework for durable backend AI agents that run anywhere.

12 lines (11 loc) 477 B
/** Authoring and distribution roots declared by an extension package. */ export interface ExtensionPackageRoots { /** * Authoring root. Optional so published packages can ship `dist` only; * `eve extension build` requires it. */ readonly source?: string; readonly dist: string; } /** Parses the strict `package.json#eve.extension` object contract. */ export declare function parseExtensionPackageRoots(value: unknown): ExtensionPackageRoots | null;