UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.27 kB
/** * **hcloud** - A command-line interface for Hetzner Cloud * * @domain `hetzner.com/hcloud` * @programs `hcloud` * @version `1.51.0` (23 versions available) * @versions From newest version to oldest. * * @install `launchpad install hcloud` * @name `hcloud` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.hcloud * // Or access via domain * const samePkg = pantry.hetznercomhcloud * console.log(pkg === samePkg) // true * console.log(pkg.name) // "hcloud" * console.log(pkg.description) // "A command-line interface for Hetzner Cloud" * console.log(pkg.programs) // ["hcloud"] * console.log(pkg.versions[0]) // "1.51.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/hetzner-com/hcloud.md * @see https://ts-pkgx.netlify.app/usage */ export declare const hcloudPackage: { /** * The display name of this package. */ name: 'hcloud'; /** * The canonical domain name for this package. */ domain: 'hetzner.com/hcloud'; /** * Brief description of what this package does. */ description: 'A command-line interface for Hetzner Cloud'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/hetzner.com/hcloud/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install hcloud'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['hcloud']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.51.0', '1.50.0', '1.49.0', '1.48.0', '1.47.0', '1.46.0', '1.45.0', '1.44.2', '1.44.1', '1.44.0', '1.43.1', '1.43.0', '1.42.0', '1.41.1', '1.41.0', '1.40.0', '1.39.0', '1.38.3', '1.38.2', '1.38.1', '1.38.0', '1.37.0', '1.36.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type HcloudPackage = typeof hcloudPackage