UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

65 lines 2.11 kB
/** * **augeas.net** - A configuration editing tool and API * * @domain `augeas.net` * @programs `augmatch`, `augparse`, `augprint`, `augtool`, `fadot` * @version `1.14.1` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install +augeas.net -- $SHELL -i` * @dependencies `gnu.org/readline`, `gnome.org/libxml2` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.augeasnet * console.log(pkg.name) // "augeas.net" * console.log(pkg.description) // "A configuration editing tool and API" * console.log(pkg.programs) // ["augmatch", "augparse", ...] * console.log(pkg.versions[0]) // "1.14.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/augeas-net.md * @see https://ts-pkgx.netlify.app/usage */ export declare const augeasnetPackage: { /** * The display name of this package. */ name: 'augeas.net'; /** * The canonical domain name for this package. */ domain: 'augeas.net'; /** * Brief description of what this package does. */ description: 'A configuration editing tool and API'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/augeas.net/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +augeas.net -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['augmatch', 'augparse', 'augprint', 'augtool', 'fadot']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['gnu.org/readline', 'gnome.org/libxml2']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.14.1', '1.14.0']; aliases: readonly [] }; export type AugeasnetPackage = typeof augeasnetPackage