UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.46 kB
/** * **libyang** - YANG data modeling language library * * @domain `github.com/cesnet/libyang` * @programs `yanglint`, `yangre` * @version `3.13.5` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install libyang` * @name `libyang` * @dependencies `pcre.org/v2>=10.21` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.libyang * // Or access via domain * const samePkg = pantry.githubcomcesnetlibyang * console.log(pkg === samePkg) // true * console.log(pkg.name) // "libyang" * console.log(pkg.description) // "YANG data modeling language library" * console.log(pkg.programs) // ["yanglint", "yangre"] * console.log(pkg.versions[0]) // "3.13.5" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/cesnet/libyang.md * @see https://ts-pkgx.netlify.app/usage */ export declare const libyangPackage: { /** * The display name of this package. */ name: 'libyang'; /** * The canonical domain name for this package. */ domain: 'github.com/cesnet/libyang'; /** * Brief description of what this package does. */ description: 'YANG data modeling language library'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/cesnet/libyang/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install libyang'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['yanglint', 'yangre']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['pcre.org/v2>=10.21']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.13.5', '3.12.2', '3.7.8', '3.4.2', '3.1.0', '2.1.148']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/cesnet/libyang -- $SHELL -i'; launchpadInstallCommand: 'launchpad install libyang' }; export type LibyangPackage = typeof libyangPackage