/** * **jless** - jless is a command-line JSON viewer designed for reading, exploring, and searching through JSON data. * * @domain `jless.io` * @programs `jless` * @version `0.9.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install jless.io` * @homepage https://jless.io/ * @dependencies `linux:x.org/xcb@1` (includes OS-specific dependencies with `os:package` format) * @buildDependencies `python.org@3` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.jlessio * console.log(pkg.name) // "jless" * console.log(pkg.description) // "jless is a command-line JSON viewer designed fo..." * console.log(pkg.programs) // ["jless"] * console.log(pkg.versions[0]) // "0.9.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/jless-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const jlessioPackage: { /** * The display name of this package. */ name: 'jless'; /** * The canonical domain name for this package. */ domain: 'jless.io'; /** * Brief description of what this package does. */ description: 'jless is a command-line JSON viewer designed for reading, exploring, and searching through JSON data.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/jless.io/package.yml'; homepageUrl: 'https://jless.io/'; githubUrl: 'https://github.com/PaulJuliusMartinez/jless'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install jless.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +jless.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install jless.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['jless']; 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 ['linux:x.org/xcb@1']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['python.org@3']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.9.0']; aliases: readonly [] }; export type JlessioPackage = typeof jlessioPackage