UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.47 kB
/** * **git2** - A cross-platform, linkable library implementation of Git that you can use in your application. * * @domain `libgit2.org` * @programs `git2` * @version `1.9.1` (12 versions available) * @versions From newest version to oldest. * * @install `launchpad install git2` * @name `git2` * @dependencies `libssh2.org^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.git2 * // Or access via domain * const samePkg = pantry.libgit2org * console.log(pkg === samePkg) // true * console.log(pkg.name) // "git2" * console.log(pkg.description) // "A cross-platform, linkable library implementati..." * console.log(pkg.programs) // ["git2"] * console.log(pkg.versions[0]) // "1.9.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/libgit2-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const git2Package: { /** * The display name of this package. */ name: 'git2'; /** * The canonical domain name for this package. */ domain: 'libgit2.org'; /** * Brief description of what this package does. */ description: 'A cross-platform, linkable library implementation of Git that you can use in your application.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libgit2.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install git2'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['git2']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['libssh2.org^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.9.1', '1.9.0', '1.8.4', '1.8.3', '1.8.2', '1.8.1', '1.8.0', '1.7.2', '1.7.1', '1.7.0', '1.6.5', '1.6.4']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) git2 -- $SHELL -i'; launchpadInstallCommand: 'launchpad install git2' }; export type Git2Package = typeof git2Package