UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

58 lines 1.76 kB
/** * **xft** - pkgx package * * @domain `x.org/xft` * @version `2.3.9` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install +x.org/xft -- $SHELL -i` * @dependencies `freedesktop.org/fontconfig^2.14`, `x.org/xrender^0.9`, `sourceware.org/bzip2^1`, ... (+1 more) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.xorgxft * console.log(pkg.name) // "xft" * console.log(pkg.versions[0]) // "2.3.9" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/x-org/xft.md * @see https://ts-pkgx.netlify.app/usage */ export declare const xorgxftPackage: { /** * The display name of this package. */ name: 'xft'; /** * The canonical domain name for this package. */ domain: 'x.org/xft'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/x.org/xft/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +x.org/xft -- $SHELL -i'; programs: readonly []; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['freedesktop.org/fontconfig^2.14', 'x.org/xrender^0.9', 'sourceware.org/bzip2^1', 'zlib.net^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.3.9', '2.3.8']; aliases: readonly [] }; export type XorgxftPackage = typeof xorgxftPackage