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;
|
2023-02-24 19:35:43 -05:00
|
|
|
mod installer;
|
2022-08-10 15:23:58 -04:00
|
|
|
mod registry;
|
|
|
|
mod resolution;
|
2022-09-13 11:59:01 -04:00
|
|
|
mod resolvers;
|
2022-08-10 15:23:58 -04:00
|
|
|
mod tarball;
|
|
|
|
|
2023-02-22 14:15:25 -05:00
|
|
|
pub use cache::should_sync_download;
|
2022-09-13 11:59:01 -04:00
|
|
|
pub use cache::NpmCache;
|
2023-02-24 19:35:43 -05:00
|
|
|
pub use installer::PackageJsonDepsInstaller;
|
2023-04-12 08:36:11 -04:00
|
|
|
pub use registry::CliNpmRegistryApi;
|
2023-02-22 14:15:25 -05:00
|
|
|
pub use resolution::NpmResolution;
|
2023-03-12 23:32:59 -04:00
|
|
|
pub use resolvers::create_npm_fs_resolver;
|
2023-04-21 21:02:46 -04:00
|
|
|
pub use resolvers::CliNpmResolver;
|
2023-02-20 13:14:06 -05:00
|
|
|
pub use resolvers::NpmProcessState;
|