PyPI API Client - v1.0.0
    Preparing search index...

    Interface PyPIDepsDevNode

    A node in the resolved dependency graph returned by deps.dev.

    interface PyPIDepsDevNode {
        versionKey: PyPIDepsDevVersionKey;
        relation: "SELF" | "DIRECT" | "INDIRECT";
        bundled: boolean;
        errors: string[];
    }
    Index

    Properties

    Package and version this node represents

    relation: "SELF" | "DIRECT" | "INDIRECT"

    Position of this package in the dependency tree:

    • 'SELF' — the root package itself
    • 'DIRECT' — declared in requires_dist
    • 'INDIRECT' — transitive (pulled in by a direct or indirect dep)
    bundled: boolean

    Whether this package is bundled inside another distribution file

    errors: string[]

    Resolution errors for this node, if any