UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.23 kB
/** * **flux** - Open and extensible continuous delivery solution for Kubernetes. Powered by GitOps Toolkit. * * @domain `fluxcd.io/flux2` * @programs `flux` * @version `2.6.2` (12 versions available) * @versions From newest version to oldest. * * @install `launchpad install flux` * @aliases `flux` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.flux * // Or access via domain * const samePkg = pantry.fluxcdioflux2 * console.log(pkg === samePkg) // true * console.log(pkg.name) // "flux2" * console.log(pkg.description) // "Open and extensible continuous delivery solutio..." * console.log(pkg.programs) // ["flux"] * console.log(pkg.versions[0]) // "2.6.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/fluxcd-io/flux2.md * @see https://ts-pkgx.netlify.app/usage */ export declare const fluxPackage: { /** * The display name of this package. */ name: 'flux2'; /** * The canonical domain name for this package. */ domain: 'fluxcd.io/flux2'; /** * Brief description of what this package does. */ description: 'Open and extensible continuous delivery solution for Kubernetes. Powered by GitOps Toolkit.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/fluxcd.io/flux2/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/fluxcd/flux2'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install flux'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['flux']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.6.2', '2.6.1', '2.6.0', '2.5.1', '2.5.0', '2.4.0', '2.3.0', '2.2.3', '2.2.2', '2.2.1', '2.2.0', '2.1.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['flux'] }; export type FluxPackage = typeof fluxPackage