UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.23 kB
/** * **loki** - Horizontally-scalable, highly-available log aggregation system * * @domain `grafana.com/loki` * @programs `loki` * @version `3.5.1` (20 versions available) * @versions From newest version to oldest. * * @install `launchpad install loki` * @name `loki` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.loki * // Or access via domain * const samePkg = pantry.grafanacomloki * console.log(pkg === samePkg) // true * console.log(pkg.name) // "loki" * console.log(pkg.description) // "Horizontally-scalable, highly-available log agg..." * console.log(pkg.programs) // ["loki"] * console.log(pkg.versions[0]) // "3.5.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/grafana-com/loki.md * @see https://ts-pkgx.netlify.app/usage */ export declare const lokiPackage: { /** * The display name of this package. */ name: 'loki'; /** * The canonical domain name for this package. */ domain: 'grafana.com/loki'; /** * Brief description of what this package does. */ description: 'Horizontally-scalable, highly-available log aggregation system'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/grafana.com/loki/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/grafana/loki'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install loki'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['loki']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.5.1', '3.5.0', '3.4.4', '3.4.3', '3.4.2', '3.4.1', '3.4.0', '3.3.4', '3.3.3', '3.3.2', '3.3.1', '3.3.0', '3.2.2', '3.2.1', '3.2.0', '2.9.15', '2.9.14', '2.9.13', '2.9.12', '2.9.11']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type LokiPackage = typeof lokiPackage