@eagleoutice/flowr - v2.13.1
    Preparing search index...

    One provenance-carrying constraint on a dependency's version: where it comes from (source/origin) and what it requires (bound). The set of these is exactly why a range is what it is, so it can answer "it must be >= 4.2.0 because ...".

    interface DerivedConstraint {
        bound?: string;
        detail: string;
        function?: string;
        origin: string;
        parameter?: string;
        source: ConstraintSource;
    }
    Index

    Properties

    bound?: string

    the version bound this constraint establishes, if any (e.g. >=1.1.0, <=2021-05-31)

    detail: string

    a human-readable explanation, e.g. dplyr::filter has parameter '.by' only from 1.1.0

    function?: string

    the qualified function that carried the evidence (for signature constraints)

    origin: string

    the concrete origin of the constraint, e.g. project metadata, dplyr 1.1.0, dplyr::filter

    parameter?: string

    the argument/parameter that carried the evidence (for signature constraints)