/** * **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 github.com/jorgebastida/awslogs` * @dependencies `python.org^3.11`, `github.com/benjaminp/six`, `zlib.net` * @buildDependencies `linux:llvm.org` (includes OS-specific dependencies with `os:package` format) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomjorgebastidaawslogs * 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/jorgebastida/awslogs'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/jorgebastida/awslogs'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/jorgebastida/awslogs -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/jorgebastida/awslogs'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['awslogs']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['python.org^3.11', 'github.com/benjaminp/six', 'zlib.net']; /** * Build dependencies for this package. * These are only required when building the package from source. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:gnu.org/gcc`). */ buildDependencies: readonly ['linux:llvm.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.15.0', '0.14.0']; aliases: readonly [] }; export type AwslogsPackage = typeof awslogsPackage