/** * **yj** - CLI - Convert between YAML, TOML, JSON, and HCL. Preserves map order. * * @domain `github.com/sclevine/yj` * @programs `yj` * @version `5.1.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/sclevine/yj` * @buildDependencies `go.dev@^1.19` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomsclevineyj * console.log(pkg.name) // "yj" * console.log(pkg.description) // "CLI - Convert between YAML, TOML, JSON, and HCL..." * console.log(pkg.programs) // ["yj"] * console.log(pkg.versions[0]) // "5.1.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/sclevine/yj.md * @see https://ts-pkgx.netlify.app/usage */ export declare const yjPackage: { /** * The display name of this package. */ name: 'yj'; /** * The canonical domain name for this package. */ domain: 'github.com/sclevine/yj'; /** * Brief description of what this package does. */ description: 'CLI - Convert between YAML, TOML, JSON, and HCL. Preserves map order.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/sclevine/yj/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/sclevine/yj'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/sclevine/yj'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/sclevine/yj -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/sclevine/yj'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['yj']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev@^1.19']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.1.0']; aliases: readonly [] }; export type YjPackage = typeof yjPackage