UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

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