/** * **s4cmd** - Super S3 command line tool * * @domain `bloomreach.com/s4cmd` * @programs `s4cmd` * @version `2.1.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install bloomreach.com/s4cmd` * @dependencies `python.org>=3<3.12` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.bloomreachcoms4cmd * console.log(pkg.name) // "s4cmd" * console.log(pkg.description) // "Super S3 command line tool" * console.log(pkg.programs) // ["s4cmd"] * console.log(pkg.versions[0]) // "2.1.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/bloomreach-com/s4cmd.md * @see https://ts-pkgx.netlify.app/usage */ export declare const bloomreachcoms4cmdPackage: { /** * The display name of this package. */ name: 's4cmd'; /** * The canonical domain name for this package. */ domain: 'bloomreach.com/s4cmd'; /** * Brief description of what this package does. */ description: 'Super S3 command line tool'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/bloomreach.com/s4cmd/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/bloomreach/s4cmd'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install bloomreach.com/s4cmd'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +bloomreach.com/s4cmd -- $SHELL -i'; launchpadInstallCommand: 'launchpad install bloomreach.com/s4cmd'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['s4cmd']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['python.org>=3<3.12']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.1.0']; aliases: readonly [] }; export type Bloomreachcoms4cmdPackage = typeof bloomreachcoms4cmdPackage