UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.24 kB
/** * **koyeb** - Koyeb cli * * @domain `koyeb.com` * @programs `koyeb` * @version `5.5.1` (36 versions available) * @versions From newest version to oldest. * * @install `launchpad install koyeb` * @aliases `koyeb` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.koyeb * // Or access via domain * const samePkg = pantry.koyebcom * console.log(pkg === samePkg) // true * console.log(pkg.name) // "koyeb.com" * console.log(pkg.description) // "Koyeb cli" * console.log(pkg.programs) // ["koyeb"] * console.log(pkg.versions[0]) // "5.5.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/koyeb-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const koyebPackage: { /** * The display name of this package. */ name: 'koyeb.com'; /** * The canonical domain name for this package. */ domain: 'koyeb.com'; /** * Brief description of what this package does. */ description: 'Koyeb cli'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/koyeb.com/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install koyeb'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['koyeb']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.5.1', '5.5.0', '5.4.3', '5.4.2', '5.4.1', '5.4.0', '5.3.2', '5.3.1', '5.3.0', '5.2.0', '5.1.0', '5.0.0', '4.3.0', '4.2.0', '4.1.2', '4.0.0', '3.12.0', '3.11.0', '3.10.0', '3.9.0', '3.8.1', '3.7.1', '3.7.0', '3.6.1', '3.6.0', '3.5.2', '3.5.1', '3.4.0', '3.3.2', '3.3.1', '3.3.0', '3.2.0', '3.1.1', '3.1.0', '3.0.2', '3.0.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['koyeb'] }; export type KoyebPackage = typeof koyebPackage