UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.6 kB
/** * **localstack** - The LocalStack CLI packaged using pyinstaller * * @domain `localstack.cloud/cli` * @programs `localstack` * @version `4.7.0` (24 versions available) * @versions From newest version to oldest. * * @install `launchpad install localstack` * @name `localstack` * @dependencies `pkgx.sh^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.localstack * // Or access via domain * const samePkg = pantry.localstackcloudcli * console.log(pkg === samePkg) // true * console.log(pkg.name) // "localstack" * console.log(pkg.description) // "The LocalStack CLI packaged using pyinstaller" * console.log(pkg.programs) // ["localstack"] * console.log(pkg.versions[0]) // "4.7.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/localstack-cloud/cli.md * @see https://ts-pkgx.netlify.app/usage */ export declare const localstackPackage: { /** * The display name of this package. */ name: 'localstack'; /** * The canonical domain name for this package. */ domain: 'localstack.cloud/cli'; /** * Brief description of what this package does. */ description: 'The LocalStack CLI packaged using pyinstaller'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/localstack.cloud/cli/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install localstack'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['localstack']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['pkgx.sh^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['4.7.0', '4.6.0', '4.5.0', '4.4.0', '4.3.0', '4.2.0', '4.1.1', '4.1.0', '4.0.3', '4.0.2', '4.0.1', '4.0.0', '3.8.1', '3.8.0', '3.6.0', '3.5.0', '3.4.0', '3.3.0', '3.2.0', '3.1.0', '3.0.2', '3.0.1', '3.0.0', '2.3.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) localstack -- $SHELL -i'; launchpadInstallCommand: 'launchpad install localstack' }; export type LocalstackPackage = typeof localstackPackage