UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.5 kB
/** * **git-absorb** - git commit --fixup, but automatic * * @domain `crates.io/git-absorb` * @programs `git-absorb` * @version `0.8.0` (9 versions available) * @versions From newest version to oldest. * * @install `launchpad install git-absorb` * @name `git-absorb` * @dependencies `libgit2.org~1.7 # links to libgit2.so.1.7` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.gitabsorb * // Or access via domain * const samePkg = pantry.cratesiogitabsorb * console.log(pkg === samePkg) // true * console.log(pkg.name) // "git-absorb" * console.log(pkg.description) // "git commit --fixup, but automatic" * console.log(pkg.programs) // ["git-absorb"] * console.log(pkg.versions[0]) // "0.8.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/git-absorb.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gitabsorbPackage: { /** * The display name of this package. */ name: 'git-absorb'; /** * The canonical domain name for this package. */ domain: 'crates.io/git-absorb'; /** * Brief description of what this package does. */ description: 'git commit --fixup, but automatic'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/git-absorb/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-absorb'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['git-absorb']; 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 ['0.8.0', '0.7.0', '0.6.17', '0.6.16', '0.6.15', '0.6.13', '0.6.12', '0.6.11', '0.6.10']; /** * 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-absorb -- $SHELL -i'; launchpadInstallCommand: 'launchpad install git-absorb' }; export type GitabsorbPackage = typeof gitabsorbPackage