2023-01-02 16:00:42 -05:00
|
|
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
2022-08-10 15:23:58 -04:00
|
|
|
|
|
|
|
mod cache;
|
|
|
|
mod registry;
|
|
|
|
mod resolution;
|
2022-09-13 11:59:01 -04:00
|
|
|
mod resolvers;
|
2022-08-10 15:23:58 -04:00
|
|
|
mod tarball;
|
|
|
|
|
2022-09-13 11:59:01 -04:00
|
|
|
pub use cache::NpmCache;
|
2022-10-31 19:07:36 -04:00
|
|
|
#[cfg(test)]
|
|
|
|
pub use registry::NpmPackageVersionDistInfo;
|
2022-09-13 11:59:01 -04:00
|
|
|
pub use registry::NpmRegistryApi;
|
2022-11-08 14:17:24 -05:00
|
|
|
pub use registry::RealNpmRegistryApi;
|
2023-01-24 09:05:54 -05:00
|
|
|
pub use resolution::resolve_graph_npm_info;
|
2022-08-10 15:23:58 -04:00
|
|
|
pub use resolution::NpmPackageId;
|
|
|
|
pub use resolution::NpmPackageReference;
|
|
|
|
pub use resolution::NpmPackageReq;
|
|
|
|
pub use resolution::NpmResolutionPackage;
|
2022-10-21 11:20:18 -04:00
|
|
|
pub use resolution::NpmResolutionSnapshot;
|
2022-09-13 11:59:01 -04:00
|
|
|
pub use resolvers::NpmPackageResolver;
|