/** * **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 tlr.dev` * @dependencies `openssl.org^1.1` * @buildDependencies `go.dev@^1.21`, `protobuf.dev` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.tlrdev * 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 tlrdevPackage: { /** * 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 tlr.dev'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +tlr.dev -- $SHELL -i'; launchpadInstallCommand: 'launchpad install tlr.dev'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['teller']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['openssl.org^1.1']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.21', 'protobuf.dev']; /** * 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']; aliases: readonly [] }; export type TlrdevPackage = typeof tlrdevPackage