JSPM CLI
    Preparing search index...

    Interface LsFlags

    Flags for the ls command to list package exports.

    Used by the jspm ls command to discover and list available package exports.

    interface LsFlags {
        quiet?: boolean;
        showVersion?: boolean;
        dir?: string;
        disableWarning?: string | string[];
        filter?: string;
        limit?: string | number;
        provider?: string;
    }

    Hierarchy

    Index

    Properties

    quiet?: boolean

    Suppress non-essential output (defaults to false)

    showVersion?: boolean

    Display version information (defaults to false)

    dir?: string

    Directory to operate in (defaults to current working directory)

    disableWarning?: string | string[]

    Comma-separated list of warnings to disable (e.g., 'file-count')

    filter?: string

    Filter exports by pattern (case-insensitive substring match, no default)

    limit?: string | number

    Limit the number of exports displayed (defaults to 20)

    provider?: string

    Provider to use for package resolution (defaults to configured defaultProvider)