UNPKG

@aws/pdk

Version:

All documentation is located at: https://aws.github.io/aws-pdk

6 lines (5 loc) 424 B
import { type PackageManifest } from '@pnpm/types'; export declare function readPackageJson(pkgPath: string): Promise<PackageManifest>; export declare function readPackageJsonFromDir(pkgPath: string): Promise<PackageManifest>; export declare function safeReadPackageJson(pkgPath: string): Promise<PackageManifest | null>; export declare function safeReadPackageJsonFromDir(pkgPath: string): Promise<PackageManifest | null>;