UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.06 kB
/** * **ord** - Index, block explorer, and command-line wallet * * @domain `ordinals.com` * @programs `ord` * @version `0.6.1` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install ord` * @aliases `ord` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.ord * // Or access via domain * const samePkg = pantry.ordinalscom * console.log(pkg === samePkg) // true * console.log(pkg.name) // "ordinals.com" * console.log(pkg.description) // "Index, block explorer, and command-line wallet" * console.log(pkg.programs) // ["ord"] * console.log(pkg.versions[0]) // "0.6.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/ordinals-com.md * @see https://ts-pkgx.netlify.app/usage */ export declare const ordPackage: { /** * The display name of this package. */ name: 'ordinals.com'; /** * The canonical domain name for this package. */ domain: 'ordinals.com'; /** * Brief description of what this package does. */ description: 'Index, block explorer, and command-line wallet'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/ordinals.com/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install ord'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['ord']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.6.1', '0.6.0', '0.5.1', '0.5.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['ord'] }; export type OrdPackage = typeof ordPackage