ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.27 kB
TypeScript
/**
* **diff-so-fancy** - Good-lookin' diffs. Actually… nah… The best-lookin' diffs. :tada:
*
* @domain `github.com/so-fancy/diff-so-fancy`
* @programs `diff-so-fancy`
* @version `1.4.4` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install diff-so-fancy`
* @name `diff-so-fancy`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.diffsofancy
* // Or access via domain
* const samePkg = pantry.githubcomsofancydiffsofancy
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "diff-so-fancy"
* console.log(pkg.description) // "Good-lookin' diffs. Actually… nah… The best-loo..."
* console.log(pkg.programs) // ["diff-so-fancy"]
* console.log(pkg.versions[0]) // "1.4.4" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/so-fancy/diff-so-fancy.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const diffsofancyPackage: {
/**
* The display name of this package.
*/
name: 'diff-so-fancy';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/so-fancy/diff-so-fancy';
/**
* Brief description of what this package does.
*/
description: 'Good-lookin\' diffs. Actually… nah… The best-lookin\' diffs. :tada:';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/so-fancy/diff-so-fancy/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install diff-so-fancy';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['diff-so-fancy'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.4.4'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type DiffsofancyPackage = typeof diffsofancyPackage