summaryrefslogtreecommitdiff
path: root/cli/npm/mod.rs
blob: 7fdf57fbf1c25d9c98ca50bb8f7963ef83ff5455 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.

mod cache;
mod registry;
mod resolution;
mod resolvers;
mod tarball;

pub use cache::NpmCache;
#[cfg(test)]
pub use registry::NpmPackageVersionDistInfo;
pub use registry::NpmRegistryApi;
pub use registry::RealNpmRegistryApi;
pub use resolution::resolve_graph_npm_info;
pub use resolution::NpmResolutionPackage;
pub use resolution::NpmResolutionSnapshot;
pub use resolvers::NpmPackageResolver;