/** * **tldr** - C command-line client for tldr pages 📚 * * @domain `tldr.sh` * @programs `tldr` * @version `1.6.1` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install tldr.sh` * @dependencies `linux:sourceware.org/bzip2^1`, `curl.se` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.tldrsh * console.log(pkg.name) // "tldr" * console.log(pkg.description) // "C command-line client for tldr pages 📚" * console.log(pkg.programs) // ["tldr"] * console.log(pkg.versions[0]) // "1.6.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/tldr-sh.md * @see https://ts-pkgx.netlify.app/usage */ export declare const tldrshPackage: { /** * The display name of this package. */ name: 'tldr'; /** * The canonical domain name for this package. */ domain: 'tldr.sh'; /** * Brief description of what this package does. */ description: 'C command-line client for tldr pages 📚'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/tldr.sh/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/tldr-pages/tldr-c-client'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install tldr.sh'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +tldr.sh -- $SHELL -i'; launchpadInstallCommand: 'launchpad install tldr.sh'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['tldr']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['linux:sourceware.org/bzip2^1', 'curl.se']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.6.1', '1.6.0', '1.5.0']; aliases: readonly [] }; export type TldrshPackage = typeof tldrshPackage