UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

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