ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.28 kB
TypeScript
/**
* **tidy-viewer** - 📺(tv) Tidy Viewer is a cross-platform CLI csv pretty printer that uses column styling to maximize viewer enjoyment.
*
* @domain `crates.io/tidy-viewer`
* @programs `tidy-viewer`
* @version `1.5.2` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install tidy-viewer`
* @name `tidy-viewer`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.tidyviewer
* // Or access via domain
* const samePkg = pantry.cratesiotidyviewer
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "tidy-viewer"
* console.log(pkg.description) // "📺(tv) Tidy Viewer is a cross-platform CLI csv ..."
* console.log(pkg.programs) // ["tidy-viewer"]
* console.log(pkg.versions[0]) // "1.5.2" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/crates-io/tidy-viewer.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const tidyviewerPackage: {
/**
* The display name of this package.
*/
name: 'tidy-viewer';
/**
* The canonical domain name for this package.
*/
domain: 'crates.io/tidy-viewer';
/**
* Brief description of what this package does.
*/
description: '📺(tv) Tidy Viewer is a cross-platform CLI csv pretty printer that uses column styling to maximize viewer enjoyment.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/tidy-viewer/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install tidy-viewer';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['tidy-viewer'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.5.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type TidyviewerPackage = typeof tidyviewerPackage