/** * Path Utilities for CLI * Issue #96: npm install CLI support * * Provides utilities to resolve package installation directory * regardless of where the CLI is invoked from. */ /** * Get the root directory of the CommandMate package installation. * * When installed globally via npm, the CLI runs from: * /commandmate/dist/cli/utils/paths.js * * This function returns the package root: * /commandmate/ * * @returns Absolute path to the package root directory */ export declare function getPackageRoot(): string; /** * Get the path to package.json * @returns Absolute path to package.json */ export declare function getPackageJsonPath(): string; //# sourceMappingURL=paths.d.ts.map