/** * **mergiraf** - Syntax-aware git merge driver * * @domain `mergiraf.org` * @programs `mergiraf` * @version `0.16.1` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install mergiraf.org` * @homepage https://mergiraf.org * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.mergiraforg * 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.16.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/mergiraf-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const mergiraforgPackage: { /** * 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: 'https://mergiraf.org'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install mergiraf.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +mergiraf.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install mergiraf.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mergiraf']; companions: readonly []; dependencies: readonly []; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.16.1', '0.15.0', '0.14.0', '0.13.0', '0.12.1', '0.12.0', '0.11.0', '0.10.0']; aliases: readonly [] }; export type MergiraforgPackage = typeof mergiraforgPackage