UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.2 kB
/** * **ag** - A code-searching tool similar to ack, but faster. * * @domain `geoff.greer.fm/ag` * @programs `ag` * @version `2.2.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install ag` * @name `ag` * @dependencies `pcre.org^8`, `tukaani.org/xz^5.4.5` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.ag * // Or access via domain * const samePkg = pantry.geoffgreerfmag * console.log(pkg === samePkg) // true * console.log(pkg.name) // "ag" * console.log(pkg.description) // "A code-searching tool similar to ack, but faster." * console.log(pkg.programs) // ["ag"] * console.log(pkg.versions[0]) // "2.2.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/geoff-greer-fm/ag.md * @see https://ts-pkgx.netlify.app/usage */ export declare const agPackage: { /** * The display name of this package. */ name: 'ag'; /** * The canonical domain name for this package. */ domain: 'geoff.greer.fm/ag'; /** * Brief description of what this package does. */ description: 'A code-searching tool similar to ack, but faster.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/geoff.greer.fm/ag/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install ag'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ag']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['pcre.org^8', 'tukaani.org/xz^5.4.5']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.2.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type AgPackage = typeof agPackage