/** * **qsv** - Ultra-fast CSV data-wrangling toolkit * * @domain `crates.io/qsv` * @programs `qsv` * @version `11.0.2` (16 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/qsv` * @homepage https://qsv.dathere.com * @dependencies `linux:wayland.freedesktop.org` (includes OS-specific dependencies with `os:package` format) * @buildDependencies `cmake.org@^3`, `python.org@>=3.8` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesioqsv * 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]) // "11.0.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/qsv.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesioqsvPackage: { /** * 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: 'https://qsv.dathere.com'; githubUrl: 'https://github.com/dathere/qsv'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/qsv'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/qsv -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/qsv'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['qsv']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['linux:wayland.freedesktop.org']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cmake.org@^3', 'python.org@>=3.8']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['11.0.2', '10.0.0', '9.1.0', '8.1.1', '8.1.0', '8.0.0', '7.1.0', '7.0.1', '7.0.0', '6.0.1', '6.0.0', '5.1.0', '5.0.3', '4.0.0', '3.3.0', '3.2.0']; aliases: readonly [] }; export type CratesioqsvPackage = typeof cratesioqsvPackage