UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.35 kB
/** * **cephadm** - Ceph is a distributed object, block, and file storage platform * * @domain `ceph.com/cephadm` * @programs `cephadm` * @version `20.3.0` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install cephadm` * @name `cephadm` * @dependencies `openssl.org^1.1`, `python.org^3` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.cephadm * // Or access via domain * const samePkg = pantry.cephcomcephadm * console.log(pkg === samePkg) // true * console.log(pkg.name) // "cephadm" * console.log(pkg.description) // "Ceph is a distributed object, block, and file s..." * console.log(pkg.programs) // ["cephadm"] * console.log(pkg.versions[0]) // "20.3.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/ceph-com/cephadm.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cephadmPackage: { /** * The display name of this package. */ name: 'cephadm'; /** * The canonical domain name for this package. */ domain: 'ceph.com/cephadm'; /** * Brief description of what this package does. */ description: 'Ceph is a distributed object, block, and file storage platform'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/ceph.com/cephadm/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/ceph/ceph'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install cephadm'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['cephadm']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openssl.org^1.1', 'python.org^3']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['20.3.0', '20.0.0', '19.3.0', '19.2.2', '19.2.1', '18.2.7', '18.2.6', '18.2.5']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type CephadmPackage = typeof cephadmPackage