/** * **git-grab** - Clone a git repository into a standard location organised by domain and path. * * @domain `crates.io/git-grab` * @programs `git-grab` * @version `3.0.0` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/git-grab` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesiogitgrab * console.log(pkg.name) // "git-grab" * console.log(pkg.description) // "Clone a git repository into a standard location..." * console.log(pkg.programs) // ["git-grab"] * console.log(pkg.versions[0]) // "3.0.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/git-grab.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesiogitgrabPackage: { /** * The display name of this package. */ name: 'git-grab'; /** * The canonical domain name for this package. */ domain: 'crates.io/git-grab'; /** * Brief description of what this package does. */ description: 'Clone a git repository into a standard location organised by domain and path.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/git-grab/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/wezm/git-grab'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/git-grab'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/git-grab -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/git-grab'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['git-grab']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.0.0', '2.1.0', '2.0.0', '1.0.1']; aliases: readonly [] }; export type CratesiogitgrabPackage = typeof cratesiogitgrabPackage