UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

75 lines 2.57 kB
/** * **tofu** - OpenTofu lets you declaratively manage your cloud infrastructure. * * @domain `opentofu.org` * @programs `tofu` * @version `1.9.1` (19 versions available) * @versions From newest version to oldest. * * @install `launchpad install tofu` * @aliases `tofu` * @dependencies `linux:gnu.org/gcc/libstdcxx` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.tofu * // Or access via domain * const samePkg = pantry.opentofuorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "opentofu.org" * console.log(pkg.description) // "OpenTofu lets you declaratively manage your clo..." * console.log(pkg.programs) // ["tofu"] * console.log(pkg.versions[0]) // "1.9.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/opentofu-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const tofuPackage: { /** * The display name of this package. */ name: 'opentofu.org'; /** * The canonical domain name for this package. */ domain: 'opentofu.org'; /** * Brief description of what this package does. */ description: 'OpenTofu lets you declaratively manage your cloud infrastructure.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/opentofu.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install tofu'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['tofu']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['linux:gnu.org/gcc/libstdcxx']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.9.1', '1.9.0', '1.8.9', '1.8.8', '1.8.7', '1.8.6', '1.8.5', '1.8.4', '1.8.3', '1.8.2', '1.8.1', '1.8.0', '1.7.8', '1.7.7', '1.7.6', '1.7.5', '1.7.4', '1.7.3', '1.6.0.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['tofu'] }; export type TofuPackage = typeof tofuPackage