just-scripts
Version:
Just Stack Scripts
8 lines • 407 B
TypeScript
import { PackageJson } from '../interfaces/PackageJson';
/**
* Reads and parses the package.json file from the given folder.
* @param folderPath The folder path to look for a package.json in.
* @returns The parsed file contents, or undefined if the file doesn't exist.
*/
export declare function readPackageJson(folderPath: string): PackageJson | undefined;
//# sourceMappingURL=readPackageJson.d.ts.map