UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.42 kB
/** * **teller** - Cloud native secrets management for developers - never leave your command line for secrets. * * @domain `tlr.dev` * @programs `teller` * @version `2.0.7` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install teller` * @name `teller` * @dependencies `openssl.org^1.1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.teller * // Or access via domain * const samePkg = pantry.tlrdev * console.log(pkg === samePkg) // true * console.log(pkg.name) // "teller" * console.log(pkg.description) // "Cloud native secrets management for developers ..." * console.log(pkg.programs) // ["teller"] * console.log(pkg.versions[0]) // "2.0.7" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/tlr-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const tellerPackage: { /** * The display name of this package. */ name: 'teller'; /** * The canonical domain name for this package. */ domain: 'tlr.dev'; /** * Brief description of what this package does. */ description: 'Cloud native secrets management for developers - never leave your command line for secrets.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/tlr.dev/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/SpectralOps/teller'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install teller'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['teller']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openssl.org^1.1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.0.7', '2.0.6', '2.0.5', '2.0.4', '1.5.6']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) teller -- $SHELL -i'; launchpadInstallCommand: 'launchpad install teller' }; export type TellerPackage = typeof tellerPackage