ts-pkgx
Version:
A library & CLI for managing packages
53 lines • 1.64 kB
TypeScript
/**
* **icon-theme** - pkgx package
*
* @domain `freedesktop.org/icon-theme`
* @version `0.18.0` (2 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +freedesktop.org/icon-theme -- $SHELL -i`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.freedesktoporgicontheme
* console.log(pkg.name) // "icon-theme"
* console.log(pkg.versions[0]) // "0.18.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/freedesktop-org/icon-theme.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const freedesktoporgiconthemePackage: {
/**
* The display name of this package.
*/
name: 'icon-theme';
/**
* The canonical domain name for this package.
*/
domain: 'freedesktop.org/icon-theme';
/**
* Brief description of what this package does.
*/
description: '';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/freedesktop.org/icon-theme/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +freedesktop.org/icon-theme -- $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 ['0.18.0', '0.17.0'];
aliases: readonly []
};
export type FreedesktoporgiconthemePackage = typeof freedesktoporgiconthemePackage