UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

75 lines 2.33 kB
/** * **qsv** - Ultra-fast CSV data-wrangling toolkit * * @domain `crates.io/qsv` * @programs `qsv` * @version `5.1.0` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install qsv` * @name `qsv` * @dependencies `linux:wayland.freedesktop.org` (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.qsv * // Or access via domain * const samePkg = pantry.cratesioqsv * console.log(pkg === samePkg) // true * console.log(pkg.name) // "qsv" * console.log(pkg.description) // "Ultra-fast CSV data-wrangling toolkit" * console.log(pkg.programs) // ["qsv"] * console.log(pkg.versions[0]) // "5.1.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/qsv.md * @see https://ts-pkgx.netlify.app/usage */ export declare const qsvPackage: { /** * The display name of this package. */ name: 'qsv'; /** * The canonical domain name for this package. */ domain: 'crates.io/qsv'; /** * Brief description of what this package does. */ description: 'Ultra-fast CSV data-wrangling toolkit'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/qsv/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install qsv'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['qsv']; 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:wayland.freedesktop.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['5.1.0', '5.0.3', '4.0.0', '3.3.0', '3.2.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type QsvPackage = typeof qsvPackage