ts-pkgx
Version:
A library & CLI for managing packages
70 lines • 1.99 kB
TypeScript
/**
* **patch** - pkgx package
*
* @domain `gnu.org/patch`
* @programs `patch`
* @version `2.8.0` (2 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install patch`
* @name `patch`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.patch
* // Or access via domain
* const samePkg = pantry.gnuorgpatch
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "patch"
* console.log(pkg.programs) // ["patch"]
* console.log(pkg.versions[0]) // "2.8.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/gnu-org/patch.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const patchPackage: {
/**
* The display name of this package.
*/
name: 'patch';
/**
* The canonical domain name for this package.
*/
domain: 'gnu.org/patch';
/**
* Brief description of what this package does.
*/
description: '';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/patch/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install patch';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['patch'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.8.0', '2.7.6'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) patch -- $SHELL -i';
launchpadInstallCommand: 'launchpad install patch'
};
export type PatchPackage = typeof patchPackage