adpa-enterprise-framework-automation
Version:
Modular, standards-compliant Node.js/TypeScript automation framework for enterprise requirements, project, and data management. Provides CLI and API for BABOK v3, PMBOK 7th Edition, and DMBOK 2.0 (in progress). Production-ready Express.js API with TypeSpe
33 lines • 1.08 kB
TypeScript
/**
* Version utilities for centralized version management
*
* Provides utilities to access package.json version dynamically
* as recommended in CLI-REFACTOR-IMPLEMENTATION-GUIDE.md section 4
*
* @version 2.1.3
* @author Requirements Gathering Agent Team
* @created July 2025
*
* @filepath c:\Users\menno\Source\Repos\requirements-gathering-agent\src\utils\version.ts
*/
/**
* Get the current package version from package.json
* @returns The version string from package.json
*/
export declare function getPackageVersion(): string;
/**
* Get formatted version string with 'v' prefix
* @returns Formatted version string (e.g., "v2.1.3")
*/
export declare function getFormattedVersion(): string;
/**
* Get the application name and version for display
* @returns Formatted application name and version
*/
export declare function getAppDisplayName(): string;
/**
* Get legacy RGA display name for backwards compatibility
* @returns Formatted legacy name and version
*/
export declare function getLegacyDisplayName(): string;
//# sourceMappingURL=version.d.ts.map