ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.56 kB
TypeScript
/**
* **prql** - PRQL is a modern language for transforming data — a simple, powerful, pipelined SQL replacement
*
* @domain `prql-lang.org`
* @programs `prql-compiler`, `prqlc`
* @version `0.13.4` (33 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +prql-lang.org -- $SHELL -i`
* @aliases `prql`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.prql
* // Or access via domain
* const samePkg = pantry.prqllangorg
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "prql-lang.org"
* console.log(pkg.description) // "PRQL is a modern language for transforming data..."
* console.log(pkg.programs) // ["prql-compiler", "prqlc"]
* console.log(pkg.versions[0]) // "0.13.4" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/prql-lang-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const prqlPackage: {
/**
* The display name of this package.
*/
name: 'prql-lang.org';
/**
* The canonical domain name for this package.
*/
domain: 'prql-lang.org';
/**
* Brief description of what this package does.
*/
description: 'PRQL is a modern language for transforming data — a simple, powerful, pipelined SQL replacement';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/prql-lang.org/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +prql-lang.org -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['prql-compiler', 'prqlc'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.13.4', '0.13.3', '0.13.2', '0.13.1', '0.13.0', '0.12.2', '0.12.1', '0.12.0', '0.11.4', '0.11.3', '0.11.2', '0.11.1', '0.11.0', '0.10.1', '0.10.0', '0.9.5', '0.9.3', '0.9.2', '0.9.1', '0.9.0', '0.8.1', '0.8.0', '0.7.1', '0.7.0', '0.6.1', '0.6.0', '0.5.2', '0.5.1', '0.5.0', '0.4.2', '0.4.1', '0.4.0', '0.3.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['prql']
};
export type PrqlPackage = typeof prqlPackage