UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.3 kB
/** * **confd** - Manage local application configuration files using templates and data from etcd or consul * * @domain `github.com/abtreece/confd` * @programs `confd` * @version `0.30.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install confd` * @name `confd` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.confd * // Or access via domain * const samePkg = pantry.githubcomabtreececonfd * console.log(pkg === samePkg) // true * console.log(pkg.name) // "confd" * console.log(pkg.description) // "Manage local application configuration files us..." * console.log(pkg.programs) // ["confd"] * console.log(pkg.versions[0]) // "0.30.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/abtreece/confd.md * @see https://ts-pkgx.netlify.app/usage */ export declare const confdPackage: { /** * The display name of this package. */ name: 'confd'; /** * The canonical domain name for this package. */ domain: 'github.com/abtreece/confd'; /** * Brief description of what this package does. */ description: 'Manage local application configuration files using templates and data from etcd or consul'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/abtreece/confd/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install confd'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['confd']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.30.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) confd -- $SHELL -i'; launchpadInstallCommand: 'launchpad install confd' }; export type ConfdPackage = typeof confdPackage