/** * **podman** - Podman: A tool for managing OCI containers and pods. * * @domain `podman.io` * @programs `podman`, `podman-remote`, `podman-mac-helper` * @version `5.7.0` (44 versions available) * @versions From newest version to oldest. * * @install `launchpad install podman.io` * @homepage https://podman.io/ * @dependencies `qemu.org`, `github.com/containers/gvisor-tap-vsock`, `darwin:github.com/crc-org/vfkit` (includes OS-specific dependencies with `os:package` format) * @buildDependencies `go.dev@=1.24.2`, `gnu.org/coreutils` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.podmanio * console.log(pkg.name) // "podman" * 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.7.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/podman-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const podmanioPackage: { /** * The display name of this package. */ name: 'podman'; /** * 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: 'https://podman.io/'; githubUrl: 'https://github.com/containers/podman'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install podman.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +podman.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install podman.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['podman', 'podman-remote', 'podman-mac-helper']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. * 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']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@=1.24.2', 'gnu.org/coreutils']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.7.0', '5.6.2', '5.6.1', '5.6.0', '5.5.2', '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']; aliases: readonly [] }; export type PodmanioPackage = typeof podmanioPackage