UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

75 lines 2.61 kB
/** * **tw** - A lightweight TUI application to view and query tabular data files, such as CSV, TSV, and parquet. * * @domain `crates.io/tabiew` * @programs `tw` * @version `0.9.4` (21 versions available) * @versions From newest version to oldest. * * @install `launchpad install tw` * @aliases `tw` * @dependencies `linux:openssl.org` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.tw * // Or access via domain * const samePkg = pantry.cratesiotabiew * console.log(pkg === samePkg) // true * console.log(pkg.name) // "tabiew" * console.log(pkg.description) // "A lightweight TUI application to view and query..." * console.log(pkg.programs) // ["tw"] * console.log(pkg.versions[0]) // "0.9.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/tabiew.md * @see https://ts-pkgx.netlify.app/usage */ export declare const twPackage: { /** * The display name of this package. */ name: 'tabiew'; /** * The canonical domain name for this package. */ domain: 'crates.io/tabiew'; /** * Brief description of what this package does. */ description: 'A lightweight TUI application to view and query tabular data files, such as CSV, TSV, and parquet.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/tabiew/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install tw'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['tw']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['linux:openssl.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.9.4', '0.9.0', '0.8.5', '0.8.4', '0.8.3', '0.8.2', '0.8.1', '0.8.0', '0.7.1', '0.7.0', '0.6.3', '0.6.2', '0.6.1', '0.6.0', '0.5.0', '0.4.3', '0.4.2', '0.4.1', '0.4.0', '0.3.5', '0.3.4']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['tw'] }; export type TwPackage = typeof twPackage