UNPKG

live-plugin-manager

Version:

Install and uninstall any node package at runtime from npm registry

13 lines (11 loc) 324 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; } }