ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.15 kB
TypeScript
/**
* **docuum** - Docuum performs least recently used (LRU) eviction of Docker images. 🗑️
*
* @domain `crates.io/docuum`
* @programs `docuum`
* @version `0.25.0` (4 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install docuum`
* @name `docuum`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.docuum
* // Or access via domain
* const samePkg = pantry.cratesiodocuum
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "docuum"
* console.log(pkg.description) // "Docuum performs least recently used (LRU) evict..."
* console.log(pkg.programs) // ["docuum"]
* console.log(pkg.versions[0]) // "0.25.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/crates-io/docuum.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const docuumPackage: {
/**
* The display name of this package.
*/
name: 'docuum';
/**
* The canonical domain name for this package.
*/
domain: 'crates.io/docuum';
/**
* Brief description of what this package does.
*/
description: 'Docuum performs least recently used (LRU) eviction of Docker images. 🗑️';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/docuum/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install docuum';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['docuum'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.25.0', '0.24.0', '0.23.1', '0.23.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type DocuumPackage = typeof docuumPackage