/** * **gomplate** - A flexible commandline tool for template rendering. Supports lots of local and remote datasources. * * @domain `gomplate.ca` * @programs `gomplate` * @version `4.3.3` (12 versions available) * @versions From newest version to oldest. * * @install `launchpad install gomplate.ca` * @homepage https://gomplate.ca/ * @buildDependencies `go.dev@~1.22.3` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.gomplateca * console.log(pkg.name) // "gomplate" * console.log(pkg.description) // "A flexible commandline tool for template render..." * console.log(pkg.programs) // ["gomplate"] * console.log(pkg.versions[0]) // "4.3.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gomplate-ca.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gomplatecaPackage: { /** * The display name of this package. */ name: 'gomplate'; /** * The canonical domain name for this package. */ domain: 'gomplate.ca'; /** * Brief description of what this package does. */ description: 'A flexible commandline tool for template rendering. Supports lots of local and remote datasources.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gomplate.ca/package.yml'; homepageUrl: 'https://gomplate.ca/'; githubUrl: 'https://github.com/hairyhenderson/gomplate'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install gomplate.ca'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +gomplate.ca -- $SHELL -i'; launchpadInstallCommand: 'launchpad install gomplate.ca'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['gomplate']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@~1.22.3']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.3.3', '4.3.2', '4.3.1', '4.3.0', '4.2.0', '4.1.0', '4.0.1', '4.0.0', '3.11.8', '3.11.7', '3.11.6', '3.11.4']; aliases: readonly [] }; export type GomplatecaPackage = typeof gomplatecaPackage