MCPcopy
hub / github.com/electron/forge / Package

Interface Package

tools/utils.ts:8–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6const PACKAGES_DIR = path.resolve(BASE_DIR, 'packages');
7
8export interface Package {
9 path: string;
10 name: string;
11 manifest: Record<string, unknown>; // the parsed package.json
12}
13
14export const getPackageInfo = async (): Promise<Package[]> => {
15 const packages: Package[] = [];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected