UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 1.97 kB
/** * **mc** - Unix like utilities for object store * * @domain `min.io/mc` * @programs `mc` * @version `2023.10.24.21.42.22` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install mc` * @name `mc` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.mc * // Or access via domain * const samePkg = pantry.miniomc * console.log(pkg === samePkg) // true * console.log(pkg.name) // "mc" * console.log(pkg.description) // "Unix like utilities for object store" * console.log(pkg.programs) // ["mc"] * console.log(pkg.versions[0]) // "2023.10.24.21.42.22" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/min-io/mc.md * @see https://ts-pkgx.netlify.app/usage */ export declare const mcPackage: { /** * The display name of this package. */ name: 'mc'; /** * The canonical domain name for this package. */ domain: 'min.io/mc'; /** * Brief description of what this package does. */ description: 'Unix like utilities for object store'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/min.io/mc/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install mc'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mc']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2023.10.24.21.42.22']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type McPackage = typeof mcPackage