/** * plugin-common-lib — shared comptime utilities for FarmFE plugins. * * Provides: * - Virtual lambda scope detection (findVirtualScopes) * - Comptime function registry (ComptimeRegistry) * - i18n message registry (I18nRegistry) */ export { findVirtualScopes, type VirtualScope } from './virtual-scope.js'; export { ComptimeRegistry, type ComptimeFunction, type ComptimeContext } from './comptime-registry.js'; export { I18nRegistry, i18n, type Locale, type MessageFn, type MessageBundle } from './i18n/index.js';