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;
|
2023-01-24 09:05:54 -05:00
|
|
|
pub use resolution::resolve_graph_npm_info;
|
2023-02-21 12:03:48 -05:00
|
|
|
pub use resolution::NpmPackageId;
|
2022-08-10 15:23:58 -04:00
|
|
|
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;
|
2023-02-20 13:14:06 -05:00
|
|
|
pub use resolvers::NpmProcessState;
|