ts-pkgx
Version:
A library & CLI for managing packages
61 lines • 2 kB
TypeScript
/**
* **tcl.tk/tcl** - pkgx package
*
* @domain `tcl.tk/tcl`
* @programs `sqlite3_analyzer`, `tclsh{{version.major}}.{{version.minor}}`, `tclsh`
* @version `9.0.2` (6 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install tcl.tk/tcl`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.tcltktcl
* console.log(pkg.name) // "tcl.tk/tcl"
* console.log(pkg.programs) // ["sqlite3_analyzer", "tclsh{{version.major}}.{{version.minor}}", ...]
* console.log(pkg.versions[0]) // "9.0.2" (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.tk/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';
/**
* 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.2', '9.0.1', '8.6.17', '8.6.16', '8.6.14', '8.6.13'];
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +tcl.tk/tcl -- $SHELL -i';
launchpadInstallCommand: 'launchpad install tcl.tk/tcl'
};
export type TcltktclPackage = typeof tcltktclPackage