Interface NpmSearchPackage

Package summary within a search result object.

interface NpmSearchPackage {
    author?: NpmPerson;
    date?: string;
    description?: string;
    keywords?: string[];
    links?: NpmPackageLinks;
    maintainers?: NpmPerson[];
    name: string;
    publisher?: NpmPerson;
    scope: string;
    version: string;
}

Properties

author?: NpmPerson
date?: string
description?: string
keywords?: string[]
maintainers?: NpmPerson[]
name: string
publisher?: NpmPerson
scope: string
version: string