UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

80 lines 3.14 kB
/** * **podman** - Podman: A tool for managing OCI containers and pods. * * @domain `podman.io` * @programs `podman`, `podman-remote`, `podman-mac-helper` * @version `5.5.1` (39 versions available) * @versions From newest version to oldest. * * @install `launchpad install +podman.io -- $SHELL -i` * @aliases `podman` * @dependencies `qemu.org`, `github.com/containers/gvisor-tap-vsock`, `darwin:github.com/crc-org/vfkit` (includes OS-specific dependencies with `os:package` format) * @companions `openssh.com` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.podman * // Or access via domain * const samePkg = pantry.podmanio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "podman.io" * console.log(pkg.description) // "Podman: A tool for managing OCI containers and ..." * console.log(pkg.programs) // ["podman", "podman-remote", ...] * console.log(pkg.versions[0]) // "5.5.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/podman-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const podmanPackage: { /** * The display name of this package. */ name: 'podman.io'; /** * The canonical domain name for this package. */ domain: 'podman.io'; /** * Brief description of what this package does. */ description: 'Podman: A tool for managing OCI containers and pods.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/podman.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +podman.io -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['podman', 'podman-remote', 'podman-mac-helper']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['openssh.com']; /** * Required dependencies for this package. * These will be automatically installed. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['qemu.org', 'github.com/containers/gvisor-tap-vsock', 'darwin:github.com/crc-org/vfkit']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.5.1', '5.5.0', '5.4.2', '5.4.1', '5.4.0', '5.3.2', '5.3.1', '5.3.0', '5.2.5', '5.2.4', '5.2.3', '5.2.2', '5.2.1', '5.2.0', '5.1.2', '5.1.1', '5.1.0', '5.0.3', '5.0.2', '5.0.1', '5.0.0', '4.9.5', '4.9.4', '4.9.3', '4.9.2', '4.9.1', '4.9.0', '4.8.3', '4.8.2', '4.8.1', '4.8.0', '4.7.2', '4.7.1', '4.7.0', '4.6.2', '4.6.1', '4.6.0', '4.5.1', '4.5.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['podman'] }; export type PodmanPackage = typeof podmanPackage