Interface DependencyMap

interface DependencyMap {
    dependencies: Map<string, Set<string>>;
    dependents: Map<string, Set<string>>;
}

Properties

dependencies: Map<string, Set<string>>

Mapping from package names to their dependencies

dependents: Map<string, Set<string>>

Mapping from package names to their dependents