UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.37 kB
/** * **atlantis** - Terraform Pull Request Automation tool * * @domain `runatlantis.io` * @programs `atlantis` * @version `0.35.1` (20 versions available) * @versions From newest version to oldest. * * @install `launchpad install atlantis` * @name `atlantis` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.atlantis * // Or access via domain * const samePkg = pantry.runatlantisio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "atlantis" * console.log(pkg.description) // "Terraform Pull Request Automation tool" * console.log(pkg.programs) // ["atlantis"] * console.log(pkg.versions[0]) // "0.35.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/runatlantis-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const atlantisPackage: { /** * The display name of this package. */ name: 'atlantis'; /** * The canonical domain name for this package. */ domain: 'runatlantis.io'; /** * Brief description of what this package does. */ description: 'Terraform Pull Request Automation tool'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/runatlantis.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install atlantis'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['atlantis']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.35.1', '0.35.0', '0.34.0', '0.33.0', '0.32.0', '0.31.0', '0.30.0', '0.29.0', '0.28.5', '0.28.4', '0.28.3', '0.28.2', '0.28.1', '0.28.0', '0.27.3', '0.27.2', '0.27.1', '0.27.0', '0.26.0', '0.25.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) atlantis -- $SHELL -i'; launchpadInstallCommand: 'launchpad install atlantis' }; export type AtlantisPackage = typeof atlantisPackage