deno_npm 0.43.0

npm registry client and dependency resolver used in the Deno CLI
Documentation
// Copyright 2018-2024 the Deno authors. MIT license.

mod collections;
mod common;
mod graph;
mod snapshot;
#[cfg(feature = "tracing")]
mod tracing;

pub use common::NewestDependencyDate;
pub use common::NewestDependencyDateOptions;
pub use common::NpmPackageVersionNotFound;
pub use common::NpmPackageVersionResolutionError;
pub use common::NpmPackageVersionResolver;
pub use common::NpmVersionResolver;
pub use graph::NpmResolutionError;
pub use graph::Reporter;
pub use graph::UnmetPeerDepDiagnostic;
pub use snapshot::AddPkgReqsOptions;
pub use snapshot::AddPkgReqsResult;
pub use snapshot::DefaultTarballUrlProvider;
pub use snapshot::IncompleteSnapshotFromLockfileError;
pub use snapshot::NpmPackagesPartitioned;
pub use snapshot::NpmRegistryDefaultTarballUrlProvider;
pub use snapshot::NpmResolutionSnapshot;
pub use snapshot::PackageCacheFolderIdNotFoundError;
pub use snapshot::PackageIdNotFoundError;
pub use snapshot::PackageNotFoundFromReferrerError;
pub use snapshot::PackageNvNotFoundError;
pub use snapshot::PackageReqNotFoundError;
pub use snapshot::SerializedNpmResolutionSnapshot;
pub use snapshot::SerializedNpmResolutionSnapshotPackage;
pub use snapshot::SnapshotFromLockfileError;
pub use snapshot::SnapshotFromLockfileParams;
pub use snapshot::ValidSerializedNpmResolutionSnapshot;
pub use snapshot::snapshot_from_lockfile;