UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.59 kB
/** * **docker-clean** - A script that cleans docker containers, images, volumes, and networks. * * @domain `github.com/ZZROTDesign/docker-clean` * @programs `docker-clean` * @version `2.0.4` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install docker-clean` * @name `docker-clean` * @dependencies `gnu.org/bash`, `docker.com/cli` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.dockerclean * // Or access via domain * const samePkg = pantry.githubcomzzrotdesigndockerclean * console.log(pkg === samePkg) // true * console.log(pkg.name) // "docker-clean" * console.log(pkg.description) // "A script that cleans docker containers, images,..." * console.log(pkg.programs) // ["docker-clean"] * console.log(pkg.versions[0]) // "2.0.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/ZZROTDesign/docker-clean.md * @see https://ts-pkgx.netlify.app/usage */ export declare const dockercleanPackage: { /** * The display name of this package. */ name: 'docker-clean'; /** * The canonical domain name for this package. */ domain: 'github.com/ZZROTDesign/docker-clean'; /** * Brief description of what this package does. */ description: 'A script that cleans docker containers, images, volumes, and networks.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/ZZROTDesign/docker-clean/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install docker-clean'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['docker-clean']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['gnu.org/bash', 'docker.com/cli']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.0.4']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) docker-clean -- $SHELL -i'; launchpadInstallCommand: 'launchpad install docker-clean' }; export type DockercleanPackage = typeof dockercleanPackage