UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.08 kB
/** * **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 yj` * @name `yj` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.yj * // Or access via domain * const samePkg = pantry.githubcomsclevineyj * console.log(pkg === samePkg) // true * 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/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install yj'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['yj']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.1.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type YjPackage = typeof yjPackage