UNPKG

@vortex.so/cli

Version:

CLI to interact with Vortex.

16 lines (15 loc) 426 B
import type { TShipManifest } from './ship.types'; /** * The npm package manifest (package.json) */ export interface Manifest { name: string; version: string; description: string; [key: string]: unknown; } export declare function getManifest(file: string): TShipManifest; /** * Determines whether the specified value is a package manifest. */ export declare function isManifest(obj: any): obj is Manifest;