/** * **pluralith** - A tool for Terraform state visualisation and automated generation of infrastructure documentation * * @domain `pluralith.com` * @programs `pluralith` * @version `0.2.2` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install pluralith.com` * @homepage https://www.pluralith.com * @dependencies `curl.se/ca-certs` * @buildDependencies `go.dev@^1.21` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.pluralithcom * console.log(pkg.name) // "pluralith" * console.log(pkg.description) // "A tool for Terraform state visualisation and au..." * console.log(pkg.programs) // ["pluralith"] * console.log(pkg.versions[0]) // "0.2.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/pluralith-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const pluralithcomPackage: { /** * The display name of this package. */ name: 'pluralith'; /** * The canonical domain name for this package. */ domain: 'pluralith.com'; /** * Brief description of what this package does. */ description: 'A tool for Terraform state visualisation and automated generation of infrastructure documentation'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pluralith.com/package.yml'; homepageUrl: 'https://www.pluralith.com'; githubUrl: 'https://github.com/Pluralith/pluralith-cli'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install pluralith.com'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +pluralith.com -- $SHELL -i'; launchpadInstallCommand: 'launchpad install pluralith.com'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pluralith']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['curl.se/ca-certs']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.21']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.2.2']; aliases: readonly [] }; export type PluralithcomPackage = typeof pluralithcomPackage