Represents a package that can be installed

interface Package {
    dependencies?: Package[];
    globalName?: string;
    name: string;
    url: string;
    version: string;
}

Properties

dependencies?: Package[]

The dependencies for the module

globalName?: string

The global name used to access the package

name: string

The name of the package

url: string

The unpkg url to the package

version: string

The version of the package