ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.5 kB
TypeScript
/**
* **lychee** - ⚡ Fast, async, stream-based link checker written in Rust. Finds broken URLs and mail addresses inside Markdown, HTML, reStructuredText, websites and more!
*
* @domain `lychee.cli.rs`
* @programs `lychee`
* @version `0.15.1` (5 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install lychee`
* @aliases `lychee`
* @dependencies `openssl.org>=1.1`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.lychee
* // Or access via domain
* const samePkg = pantry.lycheeclirs
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "lychee.cli.rs"
* console.log(pkg.description) // "⚡ Fast, async, stream-based link checker writte..."
* console.log(pkg.programs) // ["lychee"]
* console.log(pkg.versions[0]) // "0.15.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/lychee-cli-rs.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const lycheePackage: {
/**
* The display name of this package.
*/
name: 'lychee.cli.rs';
/**
* The canonical domain name for this package.
*/
domain: 'lychee.cli.rs';
/**
* Brief description of what this package does.
*/
description: '⚡ Fast, async, stream-based link checker written in Rust. Finds broken URLs and mail addresses inside Markdown, HTML, reStructuredText, websites and more!';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/lychee.cli.rs/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/lycheeverse/lychee';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install lychee';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['lychee'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['openssl.org>=1.1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.15.1', '0.15.0', '0.14.3', '0.14.2', '0.14.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['lychee']
};
export type LycheePackage = typeof lycheePackage