UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.29 kB
/** * **toml-cli** - A simple CLI for editing and querying TOML files. * * @domain `github.com/MinseokOh/toml-cli` * @programs `toml-cli` * @version `0.1.3` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install toml-cli` * @name `toml-cli` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.tomlcli * // Or access via domain * const samePkg = pantry.githubcomminseokohtomlcli * console.log(pkg === samePkg) // true * console.log(pkg.name) // "toml-cli" * console.log(pkg.description) // "A simple CLI for editing and querying TOML files." * console.log(pkg.programs) // ["toml-cli"] * console.log(pkg.versions[0]) // "0.1.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/MinseokOh/toml-cli.md * @see https://ts-pkgx.netlify.app/usage */ export declare const tomlcliPackage: { /** * The display name of this package. */ name: 'toml-cli'; /** * The canonical domain name for this package. */ domain: 'github.com/MinseokOh/toml-cli'; /** * Brief description of what this package does. */ description: 'A simple CLI for editing and querying TOML files.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/MinseokOh/toml-cli/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install toml-cli'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['toml-cli']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.1.3', '0.1.2', '0.1.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) toml-cli -- $SHELL -i'; launchpadInstallCommand: 'launchpad install toml-cli' }; export type TomlcliPackage = typeof tomlcliPackage