UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.15 kB
/** * **minio** - MinIO is a high-performance, S3 compatible object store, open sourced under GNU AGPLv3 license. * * @domain `min.io` * @programs `minio` * @version `2023.10.25.6.33.25` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install minio` * @aliases `minio` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.minio * // Or access via domain * const samePkg = pantry.minio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "min.io" * console.log(pkg.description) // "MinIO is a high-performance, S3 compatible obje..." * console.log(pkg.programs) // ["minio"] * console.log(pkg.versions[0]) // "2023.10.25.6.33.25" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/min-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const minioPackage: { /** * The display name of this package. */ name: 'min.io'; /** * The canonical domain name for this package. */ domain: 'min.io'; /** * Brief description of what this package does. */ description: 'MinIO is a high-performance, S3 compatible object store, open sourced under GNU AGPLv3 license.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/min.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 minio'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['minio']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2023.10.25.6.33.25']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['minio'] }; export type MinioPackage = typeof minioPackage