/** * **onefetch** - Command-line Git information tool * * @domain `onefetch.dev` * @programs `onefetch` * @version `2.25.0` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install onefetch.dev` * @homepage https://onefetch.dev/ * @dependencies `libgit2.org~1.7 # links to libgit2.so.1.7` * @buildDependencies `cmake.org@^3` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.onefetchdev * console.log(pkg.name) // "onefetch" * console.log(pkg.description) // "Command-line Git information tool" * console.log(pkg.programs) // ["onefetch"] * console.log(pkg.versions[0]) // "2.25.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/onefetch-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const onefetchdevPackage: { /** * The display name of this package. */ name: 'onefetch'; /** * The canonical domain name for this package. */ domain: 'onefetch.dev'; /** * Brief description of what this package does. */ description: 'Command-line Git information tool'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/onefetch.dev/package.yml'; homepageUrl: 'https://onefetch.dev/'; githubUrl: 'https://github.com/o2sh/onefetch'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install onefetch.dev'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +onefetch.dev -- $SHELL -i'; launchpadInstallCommand: 'launchpad install onefetch.dev'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['onefetch']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['libgit2.org~1.7 # links to libgit2.so.1.7']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cmake.org@^3']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.25.0', '2.24.0', '2.23.1', '2.23.0', '2.22.0', '2.21.0', '2.20.0', '2.19.0', '2.18.1']; aliases: readonly [] }; export type OnefetchdevPackage = typeof onefetchdevPackage