import type { Package } from '@sap-ux/project-access'; /** * Reads the package.json of the current package. * * Uses Node's CJS `__dirname` global at runtime (the package compiles to * CommonJS — see tsconfig.json). Under ts-jest's ESM test transform * `__dirname` is undefined and we fall back to `process.cwd()`, which * jest sets to the package root — so the upward walk to `package.json` * still lands on the right file. * * @returns {Package} Package.json of the current package. */ export declare function getPackageInfo(): Package; /** * Installs dependencies in the project directory. * * @param {string} projectPath - The project directory. */ export declare function installDependencies(projectPath: string): Promise; //# sourceMappingURL=deps.d.ts.map