@flowscripter/dynamic-plugin-framework
    Preparing search index...

    Interface PluginDependency

    Declares a dependency on another VersionedPlugin by name and semver version range.

    interface PluginDependency {
        name: string;
        scope?: string;
        versionRange: string;
    }
    Index

    Properties

    name: string

    Name of the depended-on plugin, without scope prefix.

    scope?: string

    Optional npm-style scope of the depended-on plugin (e.g. flowscripter for @flowscripter/my-plugin).

    versionRange: string

    Semver version range that must be satisfied by the installed version of the depended-on plugin (e.g. ^1.2.0, >=2.0.0).