/** * **fastgron** - High-performance JSON to GRON (greppable, flattened JSON) converter * * @domain `github.com/adamritter/fastgron` * @programs `fastgron` * @version `0.7.7` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/adamritter/fastgron` * @dependencies `curl.se`, `linux:gnu.org/gcc` (includes OS-specific dependencies with `os:package` format) * @buildDependencies `gnu.org/bash@^5`, `gnu.org/make`, `cmake.org@^3` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomadamritterfastgron * console.log(pkg.name) // "fastgron" * console.log(pkg.description) // " High-performance JSON to GRON (greppable, flat..." * console.log(pkg.programs) // ["fastgron"] * console.log(pkg.versions[0]) // "0.7.7" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/adamritter/fastgron.md * @see https://ts-pkgx.netlify.app/usage */ export declare const fastgronPackage: { /** * The display name of this package. */ name: 'fastgron'; /** * The canonical domain name for this package. */ domain: 'github.com/adamritter/fastgron'; /** * Brief description of what this package does. */ description: ' High-performance JSON to GRON (greppable, flattened JSON) converter'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/adamritter/fastgron/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/adamritter/fastgron'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/adamritter/fastgron'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/adamritter/fastgron -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/adamritter/fastgron'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['fastgron']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['curl.se', 'linux:gnu.org/gcc']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['gnu.org/bash@^5', 'gnu.org/make', 'cmake.org@^3']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.7.7']; aliases: readonly [] }; export type FastgronPackage = typeof fastgronPackage