ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.03 kB
TypeScript
/**
* **cw** - The best way to tail AWS CloudWatch Logs from your terminal
*
* @domain `lucagrulla.com/cw`
* @programs `cw`
* @version `4.1.3` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install cw`
* @name `cw`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.cw
* // Or access via domain
* const samePkg = pantry.lucagrullacomcw
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "cw"
* console.log(pkg.description) // "The best way to tail AWS CloudWatch Logs from y..."
* console.log(pkg.programs) // ["cw"]
* console.log(pkg.versions[0]) // "4.1.3" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/lucagrulla-com/cw.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const cwPackage: {
/**
* The display name of this package.
*/
name: 'cw';
/**
* The canonical domain name for this package.
*/
domain: 'lucagrulla.com/cw';
/**
* Brief description of what this package does.
*/
description: 'The best way to tail AWS CloudWatch Logs from your terminal';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/lucagrulla.com/cw/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install cw';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['cw'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['4.1.3'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type CwPackage = typeof cwPackage