UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

75 lines 2.62 kB
/** * **openstack** - pkgx package * * @domain `opendev.org/openstack/python-openstackclient` * @programs `openstack`, `openstack-inventory` * @version `8.1.0` (21 versions available) * @versions From newest version to oldest. * * @install `launchpad install openstack` * @name `openstack` * @dependencies `pkgx.sh^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.openstack * // Or access via domain * const samePkg = pantry.opendevorgopenstackpythonopenstackclient * console.log(pkg === samePkg) // true * console.log(pkg.name) // "openstack" * console.log(pkg.programs) // ["openstack", "openstack-inventory"] * console.log(pkg.versions[0]) // "8.1.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/opendev-org/openstack/python-openstackclient.md * @see https://ts-pkgx.netlify.app/usage */ export declare const openstackPackage: { /** * The display name of this package. */ name: 'openstack'; /** * The canonical domain name for this package. */ domain: 'opendev.org/openstack/python-openstackclient'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/opendev.org/openstack/python-openstackclient/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install openstack'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['openstack', 'openstack-inventory']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['pkgx.sh^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['8.1.0', '8.0.0', '7.5.0', '7.4.0', '7.3.1', '7.3.0', '7.2.1', '7.2.0', '7.1.4', '7.1.3', '7.1.2', '7.1.1', '7.1.0', '7.0.0', '6.6.1', '6.6.0', '6.5.0', '6.4.0', '6.3.0', '6.2.1', '6.0.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +opendev.org/openstack/python-openstackclient -- $SHELL -i'; launchpadInstallCommand: 'launchpad install openstack' }; export type OpenstackPackage = typeof openstackPackage