UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.54 kB
/** * **llrt** - LLRT (Low Latency Runtime) is an experimental, lightweight JavaScript runtime designed to address the growing demand for fast and efficient Serverless applications. * * @domain `github.com/awslabs/llrt` * @programs `llrt` * @version `0.6.2` (14 versions available) * @versions From newest version to oldest. * * @install `launchpad install llrt` * @name `llrt` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.llrt * // Or access via domain * const samePkg = pantry.githubcomawslabsllrt * console.log(pkg === samePkg) // true * console.log(pkg.name) // "llrt" * console.log(pkg.description) // "LLRT (Low Latency Runtime) is an experimental, ..." * console.log(pkg.programs) // ["llrt"] * console.log(pkg.versions[0]) // "0.6.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/awslabs/llrt.md * @see https://ts-pkgx.netlify.app/usage */ export declare const llrtPackage: { /** * The display name of this package. */ name: 'llrt'; /** * The canonical domain name for this package. */ domain: 'github.com/awslabs/llrt'; /** * Brief description of what this package does. */ description: 'LLRT (Low Latency Runtime) is an experimental, lightweight JavaScript runtime designed to address the growing demand for fast and efficient Serverless applications.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/awslabs/llrt/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/awslabs/llrt'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install llrt'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['llrt']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.6.2', '0.6.1', '0.6.0', '0.5.1', '0.5.0', '0.4.0', '0.3.0', '0.2.2', '0.2.1', '0.2.0', '0.1.15', '0.1.14', '0.1.13', '0.1.12']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) llrt -- $SHELL -i'; launchpadInstallCommand: 'launchpad install llrt' }; export type LlrtPackage = typeof llrtPackage