UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.39 kB
/** * **protoc-gen-connect-go** - The Go implementation of Connect: Protobuf RPC that works. * * @domain `connectrpc.org/protoc-gen-connect-go` * @programs `protoc-gen-connect-go` * @version `1.18.1` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install protoc-gen-connect-go` * @name `protoc-gen-connect-go` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.protocgenconnectgo * // Or access via domain * const samePkg = pantry.connectrpcorgprotocgenconnectgo * console.log(pkg === samePkg) // true * console.log(pkg.name) // "protoc-gen-connect-go" * console.log(pkg.description) // "The Go implementation of Connect: Protobuf RPC ..." * console.log(pkg.programs) // ["protoc-gen-connect-go"] * console.log(pkg.versions[0]) // "1.18.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/connectrpc-org/protoc-gen-connect-go.md * @see https://ts-pkgx.netlify.app/usage */ export declare const protocgenconnectgoPackage: { /** * The display name of this package. */ name: 'protoc-gen-connect-go'; /** * The canonical domain name for this package. */ domain: 'connectrpc.org/protoc-gen-connect-go'; /** * Brief description of what this package does. */ description: 'The Go implementation of Connect: Protobuf RPC that works.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/connectrpc.org/protoc-gen-connect-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-connect-go'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['protoc-gen-connect-go']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.18.1', '1.18.0', '1.17.0', '1.16.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type ProtocgenconnectgoPackage = typeof protocgenconnectgoPackage