UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

68 lines 3.24 kB
/** * **apache.org/arrow** - Apache Arrow is the universal columnar format and multi-language toolbox for fast data interchange and in-memory analytics * * @domain `apache.org/arrow` * @programs `parquet-dump-schema`, `parquet-reader`, `parquet-scan` * @version `21.0.0` (15 versions available) * @versions From newest version to oldest. * * @install `launchpad install apache.org/arrow` * @dependencies `github.com/aws/aws-sdk-cpp`, `github.com/google/brotli`, `sourceware.org/bzip2`, ... (+13 more) (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.apacheorgarrow * console.log(pkg.name) // "apache.org/arrow" * console.log(pkg.description) // "Apache Arrow is the universal columnar format a..." * console.log(pkg.programs) // ["parquet-dump-schema", "parquet-reader", ...] * console.log(pkg.versions[0]) // "21.0.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/apache-org/arrow.md * @see https://ts-pkgx.netlify.app/usage */ export declare const apacheorgarrowPackage: { /** * The display name of this package. */ name: 'apache.org/arrow'; /** * The canonical domain name for this package. */ domain: 'apache.org/arrow'; /** * Brief description of what this package does. */ description: 'Apache Arrow is the universal columnar format and multi-language toolbox for fast data interchange and in-memory analytics'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/apache.org/arrow/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install apache.org/arrow'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['parquet-dump-schema', 'parquet-reader', 'parquet-scan']; 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 ['github.com/aws/aws-sdk-cpp', 'github.com/google/brotli', 'sourceware.org/bzip2', 'google.com/glog', 'grpc.io', 'lz4.org', 'openssl.org', 'rapidjson.org', 'github.com/google/re2', 'google.github.io/snappy', 'apache.org/thrift', 'github.com/JuliaStrings/utf8proc', 'facebook.com/zstd', 'darwin:c-ares.org@1', 'darwin:libcxx.llvm.org~17 # since 18.1.0', 'linux:protobuf.dev^30.0.0 # match grpc.io, so gdal.org can build, we bundle on darwin']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['21.0.0', '20.0.0', '19.0.1', '19.0.0', '18.1.0', '18.0.0', '16.1.0', '16.0.0', '15.0.2', '15.0.1', '15.0.0', '14.0.2', '14.0.1', '14.0.0', '13.0.0']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +apache.org/arrow -- $SHELL -i'; launchpadInstallCommand: 'launchpad install apache.org/arrow' }; export type ApacheorgarrowPackage = typeof apacheorgarrowPackage