UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.46 kB
/** * **s3cmd** - Official s3cmd repo -- Command line tool for managing S3 compatible storage services (including Amazon S3 and CloudFront). * * @domain `s3tools.org` * @programs `s3cmd` * @version `2.4.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install s3cmd` * @name `s3cmd` * @dependencies `python.org>=3<3.12` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.s3cmd * // Or access via domain * const samePkg = pantry.s3toolsorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "s3cmd" * console.log(pkg.description) // "Official s3cmd repo -- Command line tool for ma..." * console.log(pkg.programs) // ["s3cmd"] * console.log(pkg.versions[0]) // "2.4.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/s3tools-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const s3cmdPackage: { /** * The display name of this package. */ name: 's3cmd'; /** * The canonical domain name for this package. */ domain: 's3tools.org'; /** * Brief description of what this package does. */ description: 'Official s3cmd repo -- Command line tool for managing S3 compatible storage services (including Amazon S3 and CloudFront).'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/s3tools.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install s3cmd'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['s3cmd']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['python.org>=3<3.12']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.4.0', '2.3.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) s3cmd -- $SHELL -i'; launchpadInstallCommand: 'launchpad install s3cmd' }; export type S3cmdPackage = typeof s3cmdPackage