/** * **eol** - CLI to show end-of-life dates for a number of products. * * @domain `endoflife.date` * @programs `eol` * @version `0.23.0` (10 versions available) * @versions From newest version to oldest. * * @install `launchpad install endoflife.date` * @homepage https://endoflife.date * @dependencies `python.org^3.12` * @buildDependencies `linux:llvm.org` (includes OS-specific dependencies with `os:package` format) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.endoflifedate * console.log(pkg.name) // "eol" * console.log(pkg.description) // "CLI to show end-of-life dates for a number of p..." * console.log(pkg.programs) // ["eol"] * console.log(pkg.versions[0]) // "0.23.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/endoflife-date.md * @see https://ts-pkgx.netlify.app/usage */ export declare const endoflifedatePackage: { /** * The display name of this package. */ name: 'eol'; /** * The canonical domain name for this package. */ domain: 'endoflife.date'; /** * Brief description of what this package does. */ description: 'CLI to show end-of-life dates for a number of products.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/endoflife.date/package.yml'; homepageUrl: 'https://endoflife.date'; githubUrl: 'https://github.com/hugovk/norwegianblue'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install endoflife.date'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +endoflife.date -- $SHELL -i'; launchpadInstallCommand: 'launchpad install endoflife.date'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['eol']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['python.org^3.12']; /** * Build dependencies for this package. * These are only required when building the package from source. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:gnu.org/gcc`). */ buildDependencies: readonly ['linux:llvm.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.23.0', '0.22.0', '0.21.0', '0.20.0', '0.19.0', '0.18.0', '0.17.0', '0.16.0', '0.15.0', '0.14.0']; aliases: readonly [] }; export type EndoflifedatePackage = typeof endoflifedatePackage