ts-pkgx
Version:
A library & CLI for managing packages
60 lines • 1.84 kB
TypeScript
/**
* **x.org/protocol** - pkgx package
*
* @domain `x.org/protocol`
* @version `2024.1.0` (4 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install x.org/protocol`
* @dependencies `x.org/util-macros`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.xorgprotocol
* console.log(pkg.name) // "x.org/protocol"
* console.log(pkg.versions[0]) // "2024.1.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/x-org/protocol.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const xorgprotocolPackage: {
/**
* The display name of this package.
*/
name: 'x.org/protocol';
/**
* The canonical domain name for this package.
*/
domain: 'x.org/protocol';
/**
* Brief description of what this package does.
*/
description: '';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/x.org/protocol/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/protocol';
programs: readonly [];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['x.org/util-macros'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2024.1.0', '2023.2.0', '2023.1.0', '2022.2.0'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +x.org/protocol -- $SHELL -i';
launchpadInstallCommand: 'launchpad install x.org/protocol'
};
export type XorgprotocolPackage = typeof xorgprotocolPackage