ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.15 kB
TypeScript
/**
* **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 s4cmd`
* @name `s4cmd`
* @dependencies `python.org>=3<3.12`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.s4cmd
* // Or access via domain
* const samePkg = pantry.bloomreachcoms4cmd
* console.log(pkg === samePkg) // true
* 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 s4cmdPackage: {
/**
* 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/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install s4cmd';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['s4cmd'];
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.1.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type S4cmdPackage = typeof s4cmdPackage