ts-pkgx
Version:
A library & CLI for managing packages
59 lines • 1.85 kB
TypeScript
/**
* **tcl** - pkgx package
*
* @domain `tcl.tk/tcl`
* @programs `sqlite3_analyzer`, `tclsh{{version.major}}.{{version.minor}}`, `tclsh`
* @version `9.0.1` (4 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +tcl.tk/tcl -- $SHELL -i`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.tcltktcl
* console.log(pkg.name) // "tcl"
* console.log(pkg.programs) // ["sqlite3_analyzer", "tclsh{{version.major}}.{{version.minor}}", ...]
* console.log(pkg.versions[0]) // "9.0.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/tcl-tk/tcl.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const tcltktclPackage: {
/**
* The display name of this package.
*/
name: 'tcl';
/**
* The canonical domain name for this package.
*/
domain: 'tcl.tk/tcl';
/**
* Brief description of what this package does.
*/
description: '';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/tcl.tk/tcl/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +tcl.tk/tcl -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['sqlite3_analyzer', 'tclsh{{version.major}}.{{version.minor}}', 'tclsh'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['9.0.1', '8.6.16', '8.6.14', '8.6.13'];
aliases: readonly []
};
export type TcltktclPackage = typeof tcltktclPackage