UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

63 lines 2.21 kB
/** * **liburcu** - liburcu is a LGPLv2.1 userspace RCU (read-copy-update) library. This data synchronization library provides read-side access which scales linearly with the number of cores. * * @domain `liburcu.org` * @version `0.15.3` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install +liburcu.org -- $SHELL -i` * @aliases `liburcu` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.liburcu * // Or access via domain * const samePkg = pantry.liburcuorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "liburcu.org" * console.log(pkg.description) // "liburcu is a LGPLv2.1 userspace RCU (read-copy-..." * console.log(pkg.versions[0]) // "0.15.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/liburcu-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const liburcuPackage: { /** * The display name of this package. */ name: 'liburcu.org'; /** * The canonical domain name for this package. */ domain: 'liburcu.org'; /** * Brief description of what this package does. */ description: 'liburcu is a LGPLv2.1 userspace RCU (read-copy-update) library. This data synchronization library provides read-side access which scales linearly with the number of cores.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/liburcu.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 +liburcu.org -- $SHELL -i'; programs: readonly []; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.15.3', '0.15.2', '0.15.1', '0.15.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['liburcu'] }; export type LiburcuPackage = typeof liburcuPackage