UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

70 lines 2.14 kB
/** * **libcap** - pkgx package * * @domain `kernel.org/libcap` * @programs `capsh`, `getcap`, `getpcaps`, `setcap` * @version `1.2.76` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install libcap` * @name `libcap` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.libcap * // Or access via domain * const samePkg = pantry.kernelorglibcap * console.log(pkg === samePkg) // true * console.log(pkg.name) // "libcap" * console.log(pkg.programs) // ["capsh", "getcap", ...] * console.log(pkg.versions[0]) // "1.2.76" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/kernel-org/libcap.md * @see https://ts-pkgx.netlify.app/usage */ export declare const libcapPackage: { /** * The display name of this package. */ name: 'libcap'; /** * The canonical domain name for this package. */ domain: 'kernel.org/libcap'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/kernel.org/libcap/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install libcap'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['capsh', 'getcap', 'getpcaps', 'setcap']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.2.76', '1.2.75', '1.2.74', '1.2.73']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +kernel.org/libcap -- $SHELL -i'; launchpadInstallCommand: 'launchpad install libcap' }; export type LibcapPackage = typeof libcapPackage