ts-pkgx
Version:
A library & CLI for managing packages
76 lines • 2.38 kB
TypeScript
/**
* **tig** - Text interface for Git repositories
*
* @domain `jonas.github.io/tig`
* @programs `tig`
* @version `2.5.12` (5 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install tig`
* @name `tig`
* @dependencies `gnu.org/libiconv^1`, `invisible-island.net/ncurses^6`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.tig
* // Or access via domain
* const samePkg = pantry.jonasgithubiotig
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "tig"
* console.log(pkg.description) // "Text interface for Git repositories"
* console.log(pkg.programs) // ["tig"]
* console.log(pkg.versions[0]) // "2.5.12" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/jonas-github-io/tig.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const tigPackage: {
/**
* The display name of this package.
*/
name: 'tig';
/**
* The canonical domain name for this package.
*/
domain: 'jonas.github.io/tig';
/**
* Brief description of what this package does.
*/
description: 'Text interface for Git repositories';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/jonas.github.io/tig/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install tig';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['tig'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['gnu.org/libiconv^1', 'invisible-island.net/ncurses^6'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.5.12', '2.5.11', '2.5.10', '2.5.9', '2.5.8'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) tig -- $SHELL -i';
launchpadInstallCommand: 'launchpad install tig'
};
export type TigPackage = typeof tigPackage