ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.08 kB
TypeScript
/**
* **himalaya** - CLI email client written in Rust
*
* @domain `pimalaya.org/himalaya`
* @programs `himalaya`
* @version `1.1.0` (4 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install himalaya`
* @name `himalaya`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.himalaya
* // Or access via domain
* const samePkg = pantry.pimalayaorghimalaya
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "himalaya"
* console.log(pkg.description) // "CLI email client written in Rust"
* console.log(pkg.programs) // ["himalaya"]
* console.log(pkg.versions[0]) // "1.1.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/pimalaya-org/himalaya.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const himalayaPackage: {
/**
* The display name of this package.
*/
name: 'himalaya';
/**
* The canonical domain name for this package.
*/
domain: 'pimalaya.org/himalaya';
/**
* Brief description of what this package does.
*/
description: 'CLI email client written in Rust';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pimalaya.org/himalaya/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install himalaya';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['himalaya'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.1.0', '1.0.0', '0.9.0', '0.8.4'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type HimalayaPackage = typeof himalayaPackage