/** * **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 min.io` * @homepage https://min.io * @buildDependencies `go.dev` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.minio * console.log(pkg.name) // "minio" * 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: 'minio'; /** * 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: 'https://min.io'; githubUrl: 'https://github.com/minio/minio'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install min.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +min.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install min.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['minio']; 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.25.6.33.25']; aliases: readonly [] }; export type MinioPackage = typeof minioPackage