UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.24 kB
/** * **tree** - Display directories as trees (with optional color/HTML output) * * @domain `gitlab.com/OldManProgrammer/unix-tree` * @programs `tree` * @version `2.2.1` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install tree` * @aliases `tree` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.tree * // Or access via domain * const samePkg = pantry.gitlabcomoldmanprogrammerunixtree * console.log(pkg === samePkg) // true * console.log(pkg.name) // "unix-tree" * console.log(pkg.description) // "Display directories as trees (with optional col..." * console.log(pkg.programs) // ["tree"] * console.log(pkg.versions[0]) // "2.2.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gitlab-com/OldManProgrammer/unix-tree.md * @see https://ts-pkgx.netlify.app/usage */ export declare const treePackage: { /** * The display name of this package. */ name: 'unix-tree'; /** * The canonical domain name for this package. */ domain: 'gitlab.com/OldManProgrammer/unix-tree'; /** * Brief description of what this package does. */ description: 'Display directories as trees (with optional color/HTML output)'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gitlab.com/OldManProgrammer/unix-tree/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install tree'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['tree']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.2.1', '2.2.0', '2.1.3', '2.1.2', '2.1.1', '2.1.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['tree'] }; export type TreePackage = typeof treePackage