ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.16 kB
TypeScript
/**
* **taplo** - A TOML toolkit written in Rust
*
* @domain `taplo.tamasfe.dev`
* @programs `taplo`
* @version `0.10.0` (5 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install taplo`
* @name `taplo`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.taplo
* // Or access via domain
* const samePkg = pantry.taplotamasfedev
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "taplo"
* console.log(pkg.description) // "A TOML toolkit written in Rust"
* console.log(pkg.programs) // ["taplo"]
* console.log(pkg.versions[0]) // "0.10.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/taplo-tamasfe-dev.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const taploPackage: {
/**
* The display name of this package.
*/
name: 'taplo';
/**
* The canonical domain name for this package.
*/
domain: 'taplo.tamasfe.dev';
/**
* Brief description of what this package does.
*/
description: 'A TOML toolkit written in Rust';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/taplo.tamasfe.dev/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install taplo';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['taplo'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.10.0', '0.9.3', '0.9.2', '0.8.1', '0.7.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) taplo -- $SHELL -i';
launchpadInstallCommand: 'launchpad install taplo'
};
export type TaploPackage = typeof taploPackage