UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.19 kB
/** * **grpcurl** - Like cURL, but for gRPC: Command-line tool for interacting with gRPC servers * * @domain `fullstory.com/grpcurl` * @programs `grpcurl` * @version `1.9.3` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install grpcurl` * @name `grpcurl` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.grpcurl * // Or access via domain * const samePkg = pantry.fullstorycomgrpcurl * console.log(pkg === samePkg) // true * console.log(pkg.name) // "grpcurl" * console.log(pkg.description) // "Like cURL, but for gRPC: Command-line tool for ..." * console.log(pkg.programs) // ["grpcurl"] * console.log(pkg.versions[0]) // "1.9.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/fullstory-com/grpcurl.md * @see https://ts-pkgx.netlify.app/usage */ export declare const grpcurlPackage: { /** * The display name of this package. */ name: 'grpcurl'; /** * The canonical domain name for this package. */ domain: 'fullstory.com/grpcurl'; /** * Brief description of what this package does. */ description: 'Like cURL, but for gRPC: Command-line tool for interacting with gRPC servers'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/fullstory.com/grpcurl/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install grpcurl'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['grpcurl']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.9.3', '1.9.2', '1.9.1', '1.9.0', '1.8.9']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type GrpcurlPackage = typeof grpcurlPackage