ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.56 kB
TypeScript
/**
* **sqlfluff** - A modular SQL linter and auto-formatter with support for multiple dialects and templated code.
*
* @domain `sqlfluff.com`
* @programs `sqlfluff`
* @version `3.4.1` (24 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install sqlfluff`
* @aliases `sqlfluff`
* @dependencies `python.org>=3.7<3.12`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.sqlfluff
* // Or access via domain
* const samePkg = pantry.sqlfluffcom
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "sqlfluff.com"
* console.log(pkg.description) // "A modular SQL linter and auto-formatter with su..."
* console.log(pkg.programs) // ["sqlfluff"]
* console.log(pkg.versions[0]) // "3.4.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/sqlfluff-com.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const sqlfluffPackage: {
/**
* The display name of this package.
*/
name: 'sqlfluff.com';
/**
* The canonical domain name for this package.
*/
domain: 'sqlfluff.com';
/**
* Brief description of what this package does.
*/
description: 'A modular SQL linter and auto-formatter with support for multiple dialects and templated code.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sqlfluff.com/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install sqlfluff';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['sqlfluff'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['python.org>=3.7<3.12'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['3.4.1', '3.4.0', '3.3.1', '3.3.0', '3.2.5', '3.2.4', '3.2.3', '3.2.2', '3.2.1', '3.2.0', '3.1.1', '3.1.0', '3.0.7', '3.0.6', '3.0.5', '3.0.4', '3.0.3', '3.0.2', '3.0.1', '3.0.0', '2.3.5', '2.3.4', '2.3.3', '2.3.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['sqlfluff']
};
export type SqlfluffPackage = typeof sqlfluffPackage