ts-pkgx
Version:
A library & CLI for managing packages
75 lines • 3.31 kB
TypeScript
/**
* **grpc** - The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
*
* @domain `grpc.io`
* @programs `grpc_csharp_plugin`, `grpc_node_plugin`, `grpc_cpp_plugin`, `grpc_python_plugin`, `grpc_objective_c_plugin`, ... (+3 more)
* @version `1.73.0` (45 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +grpc.io -- $SHELL -i`
* @aliases `grpc`
* @dependencies `abseil.io^20250127`, `c-ares.org`, `openssl.org^1.1`, ... (+4 more) (includes OS-specific dependencies with `os:package` format)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.grpc
* // Or access via domain
* const samePkg = pantry.grpcio
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "grpc.io"
* console.log(pkg.description) // "The C based gRPC (C++, Python, Ruby, Objective-..."
* console.log(pkg.programs) // ["grpc_csharp_plugin", "grpc_node_plugin", ...]
* console.log(pkg.versions[0]) // "1.73.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/grpc-io.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const grpcPackage: {
/**
* The display name of this package.
*/
name: 'grpc.io';
/**
* The canonical domain name for this package.
*/
domain: 'grpc.io';
/**
* Brief description of what this package does.
*/
description: 'The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/grpc.io/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/grpc/grpc';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +grpc.io -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['grpc_csharp_plugin', 'grpc_node_plugin', 'grpc_cpp_plugin', 'grpc_python_plugin', 'grpc_objective_c_plugin', 'grpc_ruby_plugin', 'grpc_php_plugin', 'grpc_cli'];
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 ['abseil.io^20250127', 'c-ares.org', 'openssl.org^1.1', 'github.com/google/re2', 'zlib.net', 'linux:gnu.org/gcc/libstdcxx', 'linux:protobuf.dev^30.0.0 # as of 1.72.0'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.73.0', '1.72.1', '1.72.0', '1.71.1', '1.71.0', '1.70.2', '1.70.1', '1.70.0', '1.69.0', '1.68.2', '1.68.1', '1.68.0', '1.67.1', '1.67.0', '1.66.2', '1.65.5', '1.65.4', '1.65.3', '1.65.2', '1.65.1', '1.65.0', '1.64.2', '1.64.1', '1.64.0', '1.63.1', '1.62.2', '1.62.1', '1.62.0', '1.61.2', '1.61.1', '1.61.0', '1.60.1', '1.60.0', '1.59.4', '1.59.3', '1.59.2', '1.59.1', '1.59.0', '1.58.2', '1.58.1', '1.58.0', '1.57.1', '1.56.4', '1.56.3', '1.55.4'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['grpc']
};
export type GrpcPackage = typeof grpcPackage