ts-pkgx
Version:
A library & CLI for managing packages
61 lines • 2.04 kB
TypeScript
/**
* **google.com/fullycapable** - pkgx package
*
* @domain `google.com/fullycapable`
* @programs `capsh`, `getcap`, `getpcaps`, `setcap`
* @version `2.66.0` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install google.com/fullycapable`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.googlecomfullycapable
* console.log(pkg.name) // "google.com/fullycapable"
* console.log(pkg.programs) // ["capsh", "getcap", ...]
* console.log(pkg.versions[0]) // "2.66.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/google-com/fullycapable.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const googlecomfullycapablePackage: {
/**
* The display name of this package.
*/
name: 'google.com/fullycapable';
/**
* The canonical domain name for this package.
*/
domain: 'google.com/fullycapable';
/**
* Brief description of what this package does.
*/
description: '';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/google.com/fullycapable/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install google.com/fullycapable';
/**
* 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 ['2.66.0'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +google.com/fullycapable -- $SHELL -i';
launchpadInstallCommand: 'launchpad install google.com/fullycapable'
};
export type GooglecomfullycapablePackage = typeof googlecomfullycapablePackage