UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.39 kB
/** * **lazydocker** - The lazier way to manage everything docker * * @domain `github.com/jesseduffield/lazydocker` * @programs `lazydocker` * @version `0.24.1` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install lazydocker` * @name `lazydocker` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.lazydocker * // Or access via domain * const samePkg = pantry.githubcomjesseduffieldlazydocker * console.log(pkg === samePkg) // true * console.log(pkg.name) // "lazydocker" * console.log(pkg.description) // "The lazier way to manage everything docker" * console.log(pkg.programs) // ["lazydocker"] * console.log(pkg.versions[0]) // "0.24.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/jesseduffield/lazydocker.md * @see https://ts-pkgx.netlify.app/usage */ export declare const lazydockerPackage: { /** * The display name of this package. */ name: 'lazydocker'; /** * The canonical domain name for this package. */ domain: 'github.com/jesseduffield/lazydocker'; /** * Brief description of what this package does. */ description: 'The lazier way to manage everything docker'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/jesseduffield/lazydocker/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install lazydocker'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['lazydocker']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.24.1', '0.24.0', '0.23.3', '0.23.1', '0.23.0', '0.21.1', '0.21.0', '0.20.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) lazydocker -- $SHELL -i'; launchpadInstallCommand: 'launchpad install lazydocker' }; export type LazydockerPackage = typeof lazydockerPackage