information about a mismatch between a package and its dependencies

interface WorkspaceDepsError {
    at: string;
    dependency: string;
    otherPackage: string;
    otherVersion: string;
    package: string;
    version: string;
}

Properties

at: string

type of dependency (dependencies, devDependencies, etc)

dependency: string

name of the mismatched dependency

otherPackage: string

package name where the dependency was originally declared

otherVersion: string

original version of the dependency

package: string

package name where the mismatch occurred

version: string

version of the mismatched dependency