UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.33 kB
/** * **git-trim** - Automatically trims your branches whose tracking remote refs are merged or stray * * @domain `crates.io/git-trim` * @programs `git-trim` * @version `0.4.3` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install git-trim` * @name `git-trim` * @dependencies `openssl.org^1.1`, `zlib.net^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.gittrim * // Or access via domain * const samePkg = pantry.cratesiogittrim * console.log(pkg === samePkg) // true * console.log(pkg.name) // "git-trim" * console.log(pkg.description) // "Automatically trims your branches whose trackin..." * console.log(pkg.programs) // ["git-trim"] * console.log(pkg.versions[0]) // "0.4.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/git-trim.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gittrimPackage: { /** * The display name of this package. */ name: 'git-trim'; /** * The canonical domain name for this package. */ domain: 'crates.io/git-trim'; /** * Brief description of what this package does. */ description: 'Automatically trims your branches whose tracking remote refs are merged or stray'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/git-trim/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-trim'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['git-trim']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openssl.org^1.1', 'zlib.net^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.4.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type GittrimPackage = typeof gittrimPackage