ts-pkgx
Version:
A library & CLI for managing packages
75 lines • 2.37 kB
TypeScript
/**
* **xauth** - X.Org Applications: xauth
*
* @domain `x.org/xauth`
* @programs `xauth`
* @version `1.1.4` (3 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install xauth`
* @name `xauth`
* @dependencies `x.org/x11`, `x.org/exts`, `x.org/xau`, ... (+3 more) (includes OS-specific dependencies with `os:package` format)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.xauth
* // Or access via domain
* const samePkg = pantry.xorgxauth
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "xauth"
* console.log(pkg.description) // "X.Org Applications: xauth"
* console.log(pkg.programs) // ["xauth"]
* console.log(pkg.versions[0]) // "1.1.4" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/x-org/xauth.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const xauthPackage: {
/**
* The display name of this package.
*/
name: 'xauth';
/**
* The canonical domain name for this package.
*/
domain: 'x.org/xauth';
/**
* Brief description of what this package does.
*/
description: 'X.Org Applications: xauth';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/x.org/xauth/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install xauth';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['xauth'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
* OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`).
*/
dependencies: readonly ['x.org/x11', 'x.org/exts', 'x.org/xau', 'x.org/xmu', 'linux:x.org/xcb', 'linux:x.org/xdmcp'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.1.4', '1.1.3', '1.1.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type XauthPackage = typeof xauthPackage