@shopify/cli-kit
    Preparing search index...

    An interface that represents a dependency name with its version

    interface DependencyVersion {
        name: string;
        version: string | undefined;
    }
    Index

    Properties

    Properties

    name: string

    The name of the NPM dependency as it's reflected in the package.json:

    In the example below name would be "react"

    {
    "react": "1.2.3"
    }
    version: string | undefined

    The version of the NPM dependency as it's reflected in the package.json:

    In the example below version would be "1.2.3"

    {
    "react": "1.2.3"
    }