UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

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