UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.48 kB
/** * **dasel** - Select, put and delete data from JSON, TOML, YAML, XML and CSV files with a single tool. Supports conversion between formats and can be used as a Go package. * * @domain `github.com/TomWright/dasel` * @programs `dasel` * @version `2.8.1` (6 versions available) * @versions From newest version to oldest. * * @install `launchpad install dasel` * @name `dasel` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.dasel * // Or access via domain * const samePkg = pantry.githubcomtomwrightdasel * console.log(pkg === samePkg) // true * console.log(pkg.name) // "dasel" * console.log(pkg.description) // "Select, put and delete data from JSON, TOML, YA..." * console.log(pkg.programs) // ["dasel"] * console.log(pkg.versions[0]) // "2.8.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/TomWright/dasel.md * @see https://ts-pkgx.netlify.app/usage */ export declare const daselPackage: { /** * The display name of this package. */ name: 'dasel'; /** * The canonical domain name for this package. */ domain: 'github.com/TomWright/dasel'; /** * Brief description of what this package does. */ description: 'Select, put and delete data from JSON, TOML, YAML, XML and CSV files with a single tool. Supports conversion between formats and can be used as a Go package.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/TomWright/dasel/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install dasel'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['dasel']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.8.1', '2.8.0', '2.7.0', '2.6.0', '2.5.0', '2.4.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) dasel -- $SHELL -i'; launchpadInstallCommand: 'launchpad install dasel' }; export type DaselPackage = typeof daselPackage