ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.02 kB
TypeScript
/**
* **git-tidy** - Tidy up stale git branches.
*
* @domain `crates.io/git-tidy`
* @programs `git-tidy`
* @version `2.0.1` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install git-tidy`
* @name `git-tidy`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.gittidy
* // Or access via domain
* const samePkg = pantry.cratesiogittidy
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "git-tidy"
* console.log(pkg.description) // "Tidy up stale git branches."
* console.log(pkg.programs) // ["git-tidy"]
* console.log(pkg.versions[0]) // "2.0.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/crates-io/git-tidy.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const gittidyPackage: {
/**
* The display name of this package.
*/
name: 'git-tidy';
/**
* The canonical domain name for this package.
*/
domain: 'crates.io/git-tidy';
/**
* Brief description of what this package does.
*/
description: 'Tidy up stale git branches.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/git-tidy/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-tidy';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['git-tidy'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.0.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type GittidyPackage = typeof gittidyPackage