/** * **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 min.io/mc` * @homepage https://min.io/download * @buildDependencies `go.dev` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.miniomc * 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 miniomcPackage: { /** * 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: 'https://min.io/download'; githubUrl: 'https://github.com/minio/mc'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install min.io/mc'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +min.io/mc -- $SHELL -i'; launchpadInstallCommand: 'launchpad install min.io/mc'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['mc']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['go.dev']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2023.10.24.21.42.22']; aliases: readonly [] }; export type MiniomcPackage = typeof miniomcPackage