UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.29 kB
/** * **keep** - The open-source AIOps and alert management platform * * @domain `keephq.dev` * @programs `keep` * @version `0.0.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install keep` * @name `keep` * @dependencies `python.org>=3<3.12` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.keep * // Or access via domain * const samePkg = pantry.keephqdev * console.log(pkg === samePkg) // true * console.log(pkg.name) // "keep" * console.log(pkg.description) // "The open-source AIOps and alert management plat..." * console.log(pkg.programs) // ["keep"] * console.log(pkg.versions[0]) // "0.0.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/keephq-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const keepPackage: { /** * The display name of this package. */ name: 'keep'; /** * The canonical domain name for this package. */ domain: 'keephq.dev'; /** * Brief description of what this package does. */ description: 'The open-source AIOps and alert management platform'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/keephq.dev/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install keep'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['keep']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['python.org>=3<3.12']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.0.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) keep -- $SHELL -i'; launchpadInstallCommand: 'launchpad install keep' }; export type KeepPackage = typeof keepPackage