ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.19 kB
TypeScript
/**
* **s5cmd** - Parallel S3 and local filesystem execution tool.
*
* @domain `github.com/peak/s5cmd`
* @programs `s5cmd`
* @version `2.3.0` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install s5cmd`
* @name `s5cmd`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.s5cmd
* // Or access via domain
* const samePkg = pantry.githubcompeaks5cmd
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "s5cmd"
* console.log(pkg.description) // "Parallel S3 and local filesystem execution tool."
* console.log(pkg.programs) // ["s5cmd"]
* console.log(pkg.versions[0]) // "2.3.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/peak/s5cmd.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const s5cmdPackage: {
/**
* The display name of this package.
*/
name: 's5cmd';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/peak/s5cmd';
/**
* Brief description of what this package does.
*/
description: 'Parallel S3 and local filesystem execution tool.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/peak/s5cmd/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/peak/s5cmd';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install s5cmd';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['s5cmd'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['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) s5cmd -- $SHELL -i';
launchpadInstallCommand: 'launchpad install s5cmd'
};
export type S5cmdPackage = typeof s5cmdPackage