UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.15 kB
/** * **clog** - Colorized pattern-matching log tail utility * * @domain `clog-tool.github.io` * @programs `clog` * @version `0.9.3` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install clog` * @name `clog` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.clog * // Or access via domain * const samePkg = pantry.clogtoolgithubio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "clog" * console.log(pkg.description) // "Colorized pattern-matching log tail utility" * console.log(pkg.programs) // ["clog"] * console.log(pkg.versions[0]) // "0.9.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/clog-tool-github-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const clogPackage: { /** * The display name of this package. */ name: 'clog'; /** * The canonical domain name for this package. */ domain: 'clog-tool.github.io'; /** * Brief description of what this package does. */ description: 'Colorized pattern-matching log tail utility'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/clog-tool.github.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 clog'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['clog']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.9.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) clog -- $SHELL -i'; launchpadInstallCommand: 'launchpad install clog' }; export type ClogPackage = typeof clogPackage