otter-pm 0.1.0

NPM-compatible package manager for Otter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Otter package manager.
//!
//! This crate provides npm registry client, dependency resolution,
//! and package installation capabilities.

pub mod install;
pub mod lockfile;
pub mod registry;
pub mod resolver;
pub mod types;

pub use install::{InstallError, Installer, PackageJson};
pub use lockfile::{Lockfile, LockfileEntry, LockfileError};
pub use registry::{DistInfo, NpmRegistry, PackageMetadata, RegistryError, VersionInfo};
pub use resolver::{ResolvedPackage, Resolver, ResolverError};
pub use types::{TypesError, install_bundled_types};