UNPKG

live-plugin-manager

Version:

Install and uninstall any node package at runtime from npm registry

14 lines (13 loc) 364 B
import { PackageJsonInfo } from './PackageInfo'; export interface IPluginInfo { readonly mainFile: string; readonly location: string; readonly name: string; readonly version: string; readonly dependencies: { [name: string]: string; }; readonly dependencyDetails?: { [name: string]: PackageJsonInfo | undefined; }; }