UNPKG

@pnpm/read-project-manifest

Version:

Read a project manifest (called package.json in most cases)

10 lines (9 loc) 283 B
import { type ProjectManifest } from '@pnpm/types'; export declare function readJson5File(filePath: string): Promise<{ data: ProjectManifest; text: string; }>; export declare function readJsonFile(filePath: string): Promise<{ data: ProjectManifest; text: string; }>;