UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.34 kB
/** * **git-lfs** - Git extension for versioning large files * * @domain `git-lfs.com` * @programs `git-lfs` * @version `3.7.0` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install git-lfs` * @name `git-lfs` * @dependencies `git-scm.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.gitlfs * // Or access via domain * const samePkg = pantry.gitlfscom * console.log(pkg === samePkg) // true * console.log(pkg.name) // "git-lfs" * console.log(pkg.description) // "Git extension for versioning large files" * console.log(pkg.programs) // ["git-lfs"] * console.log(pkg.versions[0]) // "3.7.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/git-lfs-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gitlfsPackage: { /** * The display name of this package. */ name: 'git-lfs'; /** * The canonical domain name for this package. */ domain: 'git-lfs.com'; /** * Brief description of what this package does. */ description: 'Git extension for versioning large files'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/git-lfs.com/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install git-lfs'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['git-lfs']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['git-scm.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.7.0', '3.6.1', '3.6.0', '3.5.1', '3.4.1', '3.4.0', '3.3.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) git-lfs -- $SHELL -i'; launchpadInstallCommand: 'launchpad install git-lfs' }; export type GitlfsPackage = typeof gitlfsPackage