ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.14 kB
TypeScript
/**
* **csview** - 📠 Pretty and fast csv viewer for cli with cjk/emoji support.
*
* @domain `crates.io/csview`
* @programs `csview`
* @version `1.3.4` (7 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install csview`
* @name `csview`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.csview
* // Or access via domain
* const samePkg = pantry.cratesiocsview
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "csview"
* console.log(pkg.description) // "📠 Pretty and fast csv viewer for cli with cjk/..."
* console.log(pkg.programs) // ["csview"]
* console.log(pkg.versions[0]) // "1.3.4" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/crates-io/csview.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const csviewPackage: {
/**
* The display name of this package.
*/
name: 'csview';
/**
* The canonical domain name for this package.
*/
domain: 'crates.io/csview';
/**
* Brief description of what this package does.
*/
description: '📠 Pretty and fast csv viewer for cli with cjk/emoji support.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/csview/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install csview';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['csview'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.3.4', '1.3.3', '1.3.2', '1.3.1', '1.3.0', '1.2.4', '1.2.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type CsviewPackage = typeof csviewPackage