eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
14 lines (13 loc) • 798 B
TypeScript
export declare const DEFAULT_CONNECT_PACKAGE_VERSION = "2.2.0";
export declare const DEFAULT_MICROSANDBOX_PACKAGE_VERSION = "0.5.5";
/**
* Returns a scaffold version value, resolving a build-stamp token at the point
* of need when the running code is unstamped. The published package is stamped
* by the build (`scripts/stamp-version-tokens.mjs`), so the fallback only ever
* fires in a dev tree — tsc watch emits and tests running from `src` — where
* the live package and workspace manifests are the sources the stamp would have captured.
* Outside a dev tree an unstamped token still throws, because writing the
* literal token into a scaffolded package.json would break the generated
* project.
*/
export declare function resolveVersionToken(field: string, value: string): string;