UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.66 kB
/** * **opensearch** - 🔎 Open source distributed and RESTful search engine. * * @domain `opensearch.org` * @programs `opensearch`, `opensearch-keystore`, `opensearch-plugin`, `opensearch-shard` * @version `3.0.0` (11 versions available) * @versions From newest version to oldest. * * @install `launchpad install +opensearch.org -- $SHELL -i` * @aliases `opensearch` * @dependencies `openjdk.org^21 # since v3`, `openmp.llvm.org^17` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.opensearch * // Or access via domain * const samePkg = pantry.opensearchorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "opensearch.org" * console.log(pkg.description) // "🔎 Open source distributed and RESTful search e..." * console.log(pkg.programs) // ["opensearch", "opensearch-keystore", ...] * console.log(pkg.versions[0]) // "3.0.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/opensearch-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const opensearchPackage: { /** * The display name of this package. */ name: 'opensearch.org'; /** * The canonical domain name for this package. */ domain: 'opensearch.org'; /** * Brief description of what this package does. */ description: '🔎 Open source distributed and RESTful search engine.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/opensearch.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +opensearch.org -- $SHELL -i'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['opensearch', 'opensearch-keystore', 'opensearch-plugin', 'opensearch-shard']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openjdk.org^21 # since v3', 'openmp.llvm.org^17']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.0.0', '2.19.1', '2.18.0', '2.17.1', '2.17.0', '2.16.0', '2.15.0', '2.14.0', '2.13.0', '2.12.0', '2.11.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['opensearch'] }; export type OpensearchPackage = typeof opensearchPackage