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