UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.65 kB
/** * **zarf** - DevSecOps for Air Gap & Limited-Connection Systems. https://zarf.dev/ * * @domain `zarf.dev` * @programs `zarf` * @version `0.60.0` (50 versions available) * @versions From newest version to oldest. * * @install `launchpad install zarf` * @name `zarf` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.zarf * // Or access via domain * const samePkg = pantry.zarfdev * console.log(pkg === samePkg) // true * console.log(pkg.name) // "zarf" * console.log(pkg.description) // "DevSecOps for Air Gap & Limited-Connection Syst..." * console.log(pkg.programs) // ["zarf"] * console.log(pkg.versions[0]) // "0.60.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/zarf-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const zarfPackage: { /** * The display name of this package. */ name: 'zarf'; /** * The canonical domain name for this package. */ domain: 'zarf.dev'; /** * Brief description of what this package does. */ description: 'DevSecOps for Air Gap & Limited-Connection Systems. https://zarf.dev/'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/zarf.dev/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install zarf'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['zarf']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.60.0', '0.59.0', '0.58.0', '0.57.0', '0.56.0', '0.55.6', '0.55.5', '0.55.4', '0.55.2', '0.55.1', '0.54.0', '0.53.0', '0.52.1', '0.52.0', '0.51.0', '0.50.0', '0.49.1', '0.49.0', '0.48.1', '0.48.0', '0.47.0', '0.46.0', '0.45.0', '0.44.0', '0.43.1', '0.43.0', '0.42.2', '0.42.1', '0.42.0', '0.41.0', '0.40.1', '0.39.0', '0.38.3', '0.38.2', '0.38.1', '0.38.0', '0.37.0', '0.36.1', '0.36.0', '0.35.0', '0.34.0', '0.33.2', '0.33.1', '0.33.0', '0.32.6', '0.32.5', '0.32.4', '0.32.3', '0.32.2', '0.32.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) zarf -- $SHELL -i'; launchpadInstallCommand: 'launchpad install zarf' }; export type ZarfPackage = typeof zarfPackage