UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

79 lines 2.9 kB
/** * **protoc-gen-go-grpc** - The Go language implementation of gRPC. HTTP/2 based RPC * * @domain `grpc.io/grpc-go` * @programs `protoc-gen-go-grpc` * @version `1.73.0` (29 versions available) * @versions From newest version to oldest. * * @install `launchpad install protoc-gen-go-grpc` * @aliases `protoc-gen-go-grpc` * @dependencies `google.com/protobuf-go^1` * @companions `protobuf.dev`, `abseil.io`, `go.dev` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.protocgengogrpc * // Or access via domain * const samePkg = pantry.grpciogrpcgo * console.log(pkg === samePkg) // true * console.log(pkg.name) // "grpc-go" * console.log(pkg.description) // "The Go language implementation of gRPC. HTTP/2 ..." * console.log(pkg.programs) // ["protoc-gen-go-grpc"] * console.log(pkg.versions[0]) // "1.73.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/grpc-io/grpc-go.md * @see https://ts-pkgx.netlify.app/usage */ export declare const protocgengogrpcPackage: { /** * The display name of this package. */ name: 'grpc-go'; /** * The canonical domain name for this package. */ domain: 'grpc.io/grpc-go'; /** * Brief description of what this package does. */ description: 'The Go language implementation of gRPC. HTTP/2 based RPC'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/grpc.io/grpc-go/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install protoc-gen-go-grpc'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['protoc-gen-go-grpc']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['protobuf.dev', 'abseil.io', 'go.dev']; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['google.com/protobuf-go^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.73.0', '1.72.2', '1.72.1', '1.72.0', '1.71.3', '1.71.2', '1.71.1', '1.71.0', '1.70.0', '1.69.4', '1.69.3', '1.69.2', '1.69.0', '1.68.2', '1.68.1', '1.68.0', '1.67.3', '1.67.2', '1.67.1', '1.67.0', '1.66.3', '1.66.2', '1.66.0', '1.65.1', '1.65.0', '1.64.1', '1.64.0', '1.63.3', '1.63.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['protoc-gen-go-grpc'] }; export type ProtocgengogrpcPackage = typeof protocgengogrpcPackage