UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.35 kB
/** * **azcopy** - The new Azure Storage data transfer utility - AzCopy v10 * * @domain `microsoft.com/azure-storage-azcopy` * @programs `azcopy` * @version `10.29.1` (12 versions available) * @versions From newest version to oldest. * * @install `launchpad install azcopy` * @aliases `azcopy` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.azcopy * // Or access via domain * const samePkg = pantry.microsoftcomazurestorageazcopy * console.log(pkg === samePkg) // true * console.log(pkg.name) // "azure-storage-azcopy" * console.log(pkg.description) // "The new Azure Storage data transfer utility - A..." * console.log(pkg.programs) // ["azcopy"] * console.log(pkg.versions[0]) // "10.29.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/microsoft-com/azure-storage-azcopy.md * @see https://ts-pkgx.netlify.app/usage */ export declare const azcopyPackage: { /** * The display name of this package. */ name: 'azure-storage-azcopy'; /** * The canonical domain name for this package. */ domain: 'microsoft.com/azure-storage-azcopy'; /** * Brief description of what this package does. */ description: 'The new Azure Storage data transfer utility - AzCopy v10'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/microsoft.com/azure-storage-azcopy/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/Azure/azure-storage-azcopy'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install azcopy'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['azcopy']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['10.29.1', '10.29.0', '10.28.1', '10.28.0', '10.27.1', '10.27.0', '10.26.0', '10.25.1', '10.25.0', '10.24.0', '10.23.0', '10.22.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['azcopy'] }; export type AzcopyPackage = typeof azcopyPackage