UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.44 kB
/** * **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` * @name `onefetch` * @dependencies `libgit2.org~1.7 # links to libgit2.so.1.7` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.onefetch * // Or access via domain * const samePkg = pantry.onefetchdev * console.log(pkg === samePkg) // true * 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 onefetchPackage: { /** * 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: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install onefetch'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['onefetch']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['libgit2.org~1.7 # links to libgit2.so.1.7']; /** * 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']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) onefetch -- $SHELL -i'; launchpadInstallCommand: 'launchpad install onefetch' }; export type OnefetchPackage = typeof onefetchPackage