UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.32 kB
/** * **docker-machine** - Create Docker hosts locally and on cloud providers * * @domain `docker.com/machine` * @programs `docker-machine` * @version `0.16.2` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install docker-machine` * @name `docker-machine` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.dockermachine * // Or access via domain * const samePkg = pantry.dockercommachine * console.log(pkg === samePkg) // true * console.log(pkg.name) // "docker-machine" * console.log(pkg.description) // "Create Docker hosts locally and on cloud providers" * console.log(pkg.programs) // ["docker-machine"] * console.log(pkg.versions[0]) // "0.16.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/docker-com/machine.md * @see https://ts-pkgx.netlify.app/usage */ export declare const dockermachinePackage: { /** * The display name of this package. */ name: 'docker-machine'; /** * The canonical domain name for this package. */ domain: 'docker.com/machine'; /** * Brief description of what this package does. */ description: 'Create Docker hosts locally and on cloud providers'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/docker.com/machine/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-machine'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['docker-machine']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.16.2']; /** * 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-machine -- $SHELL -i'; launchpadInstallCommand: 'launchpad install docker-machine' }; export type DockermachinePackage = typeof dockermachinePackage