UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

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