UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.47 kB
/** * **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` * @name `pluralith` * @dependencies `curl.se/ca-certs` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.pluralith * // Or access via domain * const samePkg = pantry.pluralithcom * console.log(pkg === samePkg) // true * 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 pluralithPackage: { /** * 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: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install pluralith'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['pluralith']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['curl.se/ca-certs']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.2.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) pluralith -- $SHELL -i'; launchpadInstallCommand: 'launchpad install pluralith' }; export type PluralithPackage = typeof pluralithPackage