/** * Version Utility * * Provides the current application version from package.json. * Used for user agent strings and version display. * * Uses compile-time import so the version is embedded in the bundle. * Runtime file lookups (fileURLToPath + readFileSync) fail in Bun's * single-file bundle because import.meta.url doesn't resolve to a * real filesystem path. */ /** Application name */ export declare const APP_NAME = "pluginator"; /** * Get the current application version */ export declare function getAppVersion(): string; /** * Get the user agent string for HTTP requests * * Format: "pluginator/x.y.z" */ export declare function getUserAgent(): string; /** * Reset the cached version (for testing) */ export declare function resetVersionCache(): void; //# sourceMappingURL=version.d.ts.map