UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.24 kB
/** * **jq** - Lightweight and flexible command-line JSON processor * * @domain `stedolan.github.io/jq` * @programs `jq` * @version `1.8.0` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install jq` * @name `jq` * @dependencies `github.com/kkos/oniguruma@6` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.jq * // Or access via domain * const samePkg = pantry.stedolangithubiojq * console.log(pkg === samePkg) // true * console.log(pkg.name) // "jq" * console.log(pkg.description) // "Lightweight and flexible command-line JSON proc..." * console.log(pkg.programs) // ["jq"] * console.log(pkg.versions[0]) // "1.8.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/stedolan-github-io/jq.md * @see https://ts-pkgx.netlify.app/usage */ export declare const jqPackage: { /** * The display name of this package. */ name: 'jq'; /** * The canonical domain name for this package. */ domain: 'stedolan.github.io/jq'; /** * Brief description of what this package does. */ description: 'Lightweight and flexible command-line JSON processor'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/stedolan.github.io/jq/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install jq'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['jq']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['github.com/kkos/oniguruma@6']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.8.0', '1.7.1', '1.7.0', '1.6.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type JqPackage = typeof jqPackage