UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.22 kB
/** * **tre** - Tree command, improved. * * @domain `github.com/dduan/tre` * @programs `tre` * @version `0.4.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install tre` * @name `tre` * @dependencies `zlib.net^1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.tre * // Or access via domain * const samePkg = pantry.githubcomdduantre * console.log(pkg === samePkg) // true * console.log(pkg.name) // "tre" * console.log(pkg.description) // "Tree command, improved." * console.log(pkg.programs) // ["tre"] * console.log(pkg.versions[0]) // "0.4.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/dduan/tre.md * @see https://ts-pkgx.netlify.app/usage */ export declare const trePackage: { /** * The display name of this package. */ name: 'tre'; /** * The canonical domain name for this package. */ domain: 'github.com/dduan/tre'; /** * Brief description of what this package does. */ description: 'Tree command, improved.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/dduan/tre/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install tre'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['tre']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['zlib.net^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.4.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) tre -- $SHELL -i'; launchpadInstallCommand: 'launchpad install tre' }; export type TrePackage = typeof trePackage