ts-pkgx
Version:
A library & CLI for managing packages
62 lines • 2.1 kB
TypeScript
/**
* **wayland-protocols** - pkgx package
*
* @domain `wayland.freedesktop.org/protocols`
* @version `1.45.0` (14 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +wayland.freedesktop.org/protocols -- $SHELL -i`
* @aliases `wayland-protocols`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.waylandprotocols
* // Or access via domain
* const samePkg = pantry.waylandfreedesktoporgprotocols
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "protocols"
* console.log(pkg.versions[0]) // "1.45.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/wayland-freedesktop-org/protocols.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const waylandprotocolsPackage: {
/**
* The display name of this package.
*/
name: 'protocols';
/**
* The canonical domain name for this package.
*/
domain: 'wayland.freedesktop.org/protocols';
/**
* Brief description of what this package does.
*/
description: '';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/wayland.freedesktop.org/protocols/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +wayland.freedesktop.org/protocols -- $SHELL -i';
programs: readonly [];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.45.0', '1.44.0', '1.43.0', '1.42.0', '1.41.0', '1.40.0', '1.39.0', '1.38.0', '1.37.0', '1.36.0', '1.35.0', '1.34.0', '1.33.0', '1.32.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['wayland-protocols']
};
export type WaylandprotocolsPackage = typeof waylandprotocolsPackage