/** * **pkgm** - Install `pkgx` packages to `/usr/local` * * @domain `pkgx.sh/pkgm` * @programs `pkgm` * @version `0.11.1` (10 versions available) * @versions From newest version to oldest. * * @install `launchpad install pkgx.sh/pkgm` * @dependencies `pkgx.sh^2`, `curl.se/ca-certs` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.pkgxshpkgm * console.log(pkg.name) // "pkgm" * console.log(pkg.description) // "Install `pkgx` packages to `/usr/local`" * console.log(pkg.programs) // ["pkgm"] * console.log(pkg.versions[0]) // "0.11.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/pkgx-sh/pkgm.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pkgxshpkgmPackage: { /** * The display name of this package. */ name: 'pkgm'; /** * The canonical domain name for this package. */ domain: 'pkgx.sh/pkgm'; /** * Brief description of what this package does. */ description: 'Install `pkgx` packages to `/usr/local`'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pkgx.sh/pkgm/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pkgm'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install pkgx.sh/pkgm'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +pkgx.sh/pkgm -- $SHELL -i'; launchpadInstallCommand: 'launchpad install pkgx.sh/pkgm'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pkgm']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['pkgx.sh^2', 'curl.se/ca-certs']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.11.1', '0.11.0', '0.10.1', '0.10.0', '0.9.2', '0.9.1', '0.9.0', '0.8.0', '0.7.2', '0.7.1']; aliases: readonly [] }; export type PkgxshpkgmPackage = typeof pkgxshpkgmPackage