UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.43 kB
/** * **thrift** - Framework for scalable cross-language services development * * @domain `apache.org/thrift` * @programs `thrift` * @version `0.22.0` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install thrift` * @name `thrift` * @dependencies `openssl.org@1.1`, `zlib.net` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.thrift * // Or access via domain * const samePkg = pantry.apacheorgthrift * console.log(pkg === samePkg) // true * console.log(pkg.name) // "thrift" * console.log(pkg.description) // "Framework for scalable cross-language services ..." * console.log(pkg.programs) // ["thrift"] * console.log(pkg.versions[0]) // "0.22.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/apache-org/thrift.md * @see https://ts-pkgx.netlify.app/usage */ export declare const thriftPackage: { /** * The display name of this package. */ name: 'thrift'; /** * The canonical domain name for this package. */ domain: 'apache.org/thrift'; /** * Brief description of what this package does. */ description: 'Framework for scalable cross-language services development'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/apache.org/thrift/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install thrift'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['thrift']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openssl.org@1.1', 'zlib.net']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.22.0', '0.21.0', '0.20.0', '0.19.0', '0.18.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) thrift -- $SHELL -i'; launchpadInstallCommand: 'launchpad install thrift' }; export type ThriftPackage = typeof thriftPackage