/** * **jnv** - Interactive JSON filter using jq * * @domain `crates.io/jnv` * @programs `jnv` * @version `0.6.1` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/jnv` * @buildDependencies `gnu.org/autoconf@2`, `gnu.org/automake@1`, `gnu.org/libtool@2` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesiojnv * console.log(pkg.name) // "jnv" * console.log(pkg.description) // "Interactive JSON filter using jq" * console.log(pkg.programs) // ["jnv"] * console.log(pkg.versions[0]) // "0.6.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/jnv.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesiojnvPackage: { /** * The display name of this package. */ name: 'jnv'; /** * The canonical domain name for this package. */ domain: 'crates.io/jnv'; /** * Brief description of what this package does. */ description: 'Interactive JSON filter using jq'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/jnv/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/ynqa/jnv'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/jnv'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/jnv -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/jnv'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['jnv']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/autoconf@2', 'gnu.org/automake@1', 'gnu.org/libtool@2']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.6.1', '0.6.0', '0.5.0', '0.4.2', '0.4.1', '0.4.0', '0.3.0', '0.2.3']; aliases: readonly [] }; export type CratesiojnvPackage = typeof cratesiojnvPackage