/** * **duckdb** - DuckDB is an analytical in-process SQL database management system * * @domain `duckdb.org` * @programs `duckdb` * @version `1.4.2` (24 versions available) * @versions From newest version to oldest. * * @install `launchpad install duckdb.org` * @homepage https://www.duckdb.org * @buildDependencies `cmake.org@^3`, `python.org@^3` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.duckdborg * console.log(pkg.name) // "duckdb" * console.log(pkg.description) // "DuckDB is an analytical in-process SQL database..." * console.log(pkg.programs) // ["duckdb"] * console.log(pkg.versions[0]) // "1.4.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/duckdb-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const duckdborgPackage: { /** * The display name of this package. */ name: 'duckdb'; /** * The canonical domain name for this package. */ domain: 'duckdb.org'; /** * Brief description of what this package does. */ description: 'DuckDB is an analytical in-process SQL database management system'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/duckdb.org/package.yml'; homepageUrl: 'https://www.duckdb.org'; githubUrl: 'https://github.com/duckdb/duckdb'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install duckdb.org'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +duckdb.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install duckdb.org'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['duckdb']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cmake.org@^3', 'python.org@^3']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.4.2', '1.4.1', '1.4.0', '1.3.2', '1.3.1', '1.3.0', '1.2.2', '1.2.1', '1.2.0', '1.1.3', '1.1.2', '1.1.1', '1.1.0', '1.0.0', '0.10.3', '0.10.2', '0.10.1', '0.10.0', '0.9.2', '0.9.1', '0.9.0', '0.8.1', '0.8.0', '0.7.1']; aliases: readonly [] }; export type DuckdborgPackage = typeof duckdborgPackage