ts-pkgx
Version:
A library & CLI for managing packages
56 lines • 1.79 kB
TypeScript
/**
* **fmt.dev** - A modern formatting library
*
* @domain `fmt.dev`
* @version `11.2.0` (15 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install fmt.dev`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.fmtdev
* console.log(pkg.name) // "fmt.dev"
* console.log(pkg.description) // "A modern formatting library"
* console.log(pkg.versions[0]) // "11.2.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/fmt-dev.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const fmtdevPackage: {
/**
* The display name of this package.
*/
name: 'fmt.dev';
/**
* The canonical domain name for this package.
*/
domain: 'fmt.dev';
/**
* Brief description of what this package does.
*/
description: 'A modern formatting library';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/fmt.dev/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install fmt.dev';
programs: readonly [];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['11.2.0', '11.1.4', '11.1.3', '11.1.2', '11.1.1', '11.1.0', '11.0.2', '11.0.1', '11.0.0', '10.2.1', '10.2.0', '10.1.1', '10.1.0', '10.0.0', '9.1.0'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +fmt.dev -- $SHELL -i';
launchpadInstallCommand: 'launchpad install fmt.dev'
};
export type FmtdevPackage = typeof fmtdevPackage