/** * **fselect** - Find files with SQL-like queries * * @domain `crates.io/fselect` * @programs `fselect` * @version `0.9.1` (10 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/fselect` * @homepage https://fselect.rocks * @dependencies `openssl.org^1.1` * @buildDependencies `cmake.org@^3` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesiofselect * console.log(pkg.name) // "fselect" * console.log(pkg.description) // "Find files with SQL-like queries" * console.log(pkg.programs) // ["fselect"] * console.log(pkg.versions[0]) // "0.9.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/fselect.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesiofselectPackage: { /** * The display name of this package. */ name: 'fselect'; /** * The canonical domain name for this package. */ domain: 'crates.io/fselect'; /** * Brief description of what this package does. */ description: 'Find files with SQL-like queries'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/fselect/package.yml'; homepageUrl: 'https://fselect.rocks'; githubUrl: 'https://github.com/jhspetersson/fselect'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/fselect'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/fselect -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/fselect'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['fselect']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['openssl.org^1.1']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cmake.org@^3']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.9.1', '0.9.0', '0.8.12', '0.8.11', '0.8.10', '0.8.9', '0.8.8', '0.8.6', '0.8.5', '0.8.4']; aliases: readonly [] }; export type CratesiofselectPackage = typeof cratesiofselectPackage