ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.24 kB
TypeScript
/**
* **sleek** - Sleek is a CLI tool for formatting SQL. It helps you maintain a consistent style across your SQL code, enhancing readability and productivity.
*
* @domain `crates.io/sleek`
* @programs `sleek`
* @version `0.5.0` (3 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install sleek`
* @name `sleek`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.sleek
* // Or access via domain
* const samePkg = pantry.cratesiosleek
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "sleek"
* console.log(pkg.description) // "Sleek is a CLI tool for formatting SQL. It help..."
* console.log(pkg.programs) // ["sleek"]
* console.log(pkg.versions[0]) // "0.5.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/crates-io/sleek.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const sleekPackage: {
/**
* The display name of this package.
*/
name: 'sleek';
/**
* The canonical domain name for this package.
*/
domain: 'crates.io/sleek';
/**
* Brief description of what this package does.
*/
description: 'Sleek is a CLI tool for formatting SQL. It helps you maintain a consistent style across your SQL code, enhancing readability and productivity.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/sleek/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install sleek';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['sleek'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.5.0', '0.4.0', '0.3.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type SleekPackage = typeof sleekPackage