ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 1.94 kB
TypeScript
/**
* **ddh** - A fast duplicate file finder
*
* @domain `crates.io/ddh`
* @programs `ddh`
* @version `0.13.0` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install ddh`
* @name `ddh`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.ddh
* // Or access via domain
* const samePkg = pantry.cratesioddh
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "ddh"
* console.log(pkg.description) // "A fast duplicate file finder"
* console.log(pkg.programs) // ["ddh"]
* console.log(pkg.versions[0]) // "0.13.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/crates-io/ddh.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const ddhPackage: {
/**
* The display name of this package.
*/
name: 'ddh';
/**
* The canonical domain name for this package.
*/
domain: 'crates.io/ddh';
/**
* Brief description of what this package does.
*/
description: 'A fast duplicate file finder';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/ddh/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install ddh';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['ddh'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.13.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type DdhPackage = typeof ddhPackage