UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.53 kB
/** * **awslogs** - Simple command-line tool to read AWS CloudWatch logs * * @domain `github.com/jorgebastida/awslogs` * @programs `awslogs` * @version `0.15.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install awslogs` * @name `awslogs` * @dependencies `python.org^3.11`, `github.com/benjaminp/six`, `zlib.net` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.awslogs * // Or access via domain * const samePkg = pantry.githubcomjorgebastidaawslogs * console.log(pkg === samePkg) // true * console.log(pkg.name) // "awslogs" * console.log(pkg.description) // "Simple command-line tool to read AWS CloudWatch..." * console.log(pkg.programs) // ["awslogs"] * console.log(pkg.versions[0]) // "0.15.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/jorgebastida/awslogs.md * @see https://ts-pkgx.netlify.app/usage */ export declare const awslogsPackage: { /** * The display name of this package. */ name: 'awslogs'; /** * The canonical domain name for this package. */ domain: 'github.com/jorgebastida/awslogs'; /** * Brief description of what this package does. */ description: 'Simple command-line tool to read AWS CloudWatch logs'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/jorgebastida/awslogs/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install awslogs'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['awslogs']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['python.org^3.11', 'github.com/benjaminp/six', 'zlib.net']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.15.0', '0.14.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) awslogs -- $SHELL -i'; launchpadInstallCommand: 'launchpad install awslogs' }; export type AwslogsPackage = typeof awslogsPackage