UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.5 kB
/** * **temporal** - Command-line interface for running Temporal Server and interacting with Workflows, Activities, Namespaces, and other parts of Temporal * * @domain `temporal.io` * @programs `temporal` * @version `1.4.1` (16 versions available) * @versions From newest version to oldest. * * @install `launchpad install temporal` * @name `temporal` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.temporal * // Or access via domain * const samePkg = pantry.temporalio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "temporal" * console.log(pkg.description) // "Command-line interface for running Temporal Ser..." * console.log(pkg.programs) // ["temporal"] * console.log(pkg.versions[0]) // "1.4.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/temporal-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const temporalPackage: { /** * The display name of this package. */ name: 'temporal'; /** * The canonical domain name for this package. */ domain: 'temporal.io'; /** * Brief description of what this package does. */ description: 'Command-line interface for running Temporal Server and interacting with Workflows, Activities, Namespaces, and other parts of Temporal'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/temporal.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install temporal'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['temporal']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.4.1', '1.4.0', '1.3.0', '1.2.0', '1.1.2', '1.1.1', '1.1.0', '1.0.0', '0.13.2', '0.13.1', '0.13.0', '0.12.0', '0.11.0', '0.10.7', '0.10.6', '0.10.5']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) temporal -- $SHELL -i'; launchpadInstallCommand: 'launchpad install temporal' }; export type TemporalPackage = typeof temporalPackage