/** * **terrarium** - terraform wrapper which transparent loads env files for stacks * * @domain `github.com/terrarium-tf` * @programs `terrarium` * @version `1.3.2` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/terrarium-tf` * @dependencies `terraform.io` * @buildDependencies `go.dev@^1.18` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomterrariumtf * console.log(pkg.name) // "terrarium" * console.log(pkg.description) // "terraform wrapper which transparent loads env f..." * console.log(pkg.programs) // ["terrarium"] * console.log(pkg.versions[0]) // "1.3.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/terrarium-tf.md * @see https://ts-pkgx.netlify.app/usage */ export declare const terrariumtfPackage: { /** * The display name of this package. */ name: 'terrarium'; /** * The canonical domain name for this package. */ domain: 'github.com/terrarium-tf'; /** * Brief description of what this package does. */ description: 'terraform wrapper which transparent loads env files for stacks'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/terrarium-tf/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/terrarium-tf/cli'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/terrarium-tf'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/terrarium-tf -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/terrarium-tf'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['terrarium']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['terraform.io']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.18']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.3.2']; aliases: readonly [] }; export type TerrariumtfPackage = typeof terrariumtfPackage