UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.23 kB
/** * **envconsul** - Launch a subprocess with environment variables using data from @HashiCorp Consul and Vault. * * @domain `hashicorp.com/envconsul` * @programs `envconsul` * @version `0.13.3` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install envconsul` * @name `envconsul` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.envconsul * // Or access via domain * const samePkg = pantry.hashicorpcomenvconsul * console.log(pkg === samePkg) // true * console.log(pkg.name) // "envconsul" * console.log(pkg.description) // "Launch a subprocess with environment variables ..." * console.log(pkg.programs) // ["envconsul"] * console.log(pkg.versions[0]) // "0.13.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/hashicorp-com/envconsul.md * @see https://ts-pkgx.netlify.app/usage */ export declare const envconsulPackage: { /** * The display name of this package. */ name: 'envconsul'; /** * The canonical domain name for this package. */ domain: 'hashicorp.com/envconsul'; /** * Brief description of what this package does. */ description: 'Launch a subprocess with environment variables using data from @HashiCorp Consul and Vault.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/hashicorp.com/envconsul/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install envconsul'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['envconsul']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.13.3', '0.13.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type EnvconsulPackage = typeof envconsulPackage