UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.12 kB
/** * **csvdiff** - A fast diff tool for comparing csv files * * @domain `github.com/aswinkarthik/csvdiff` * @programs `csvdiff` * @version `1.4.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install csvdiff` * @name `csvdiff` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.csvdiff * // Or access via domain * const samePkg = pantry.githubcomaswinkarthikcsvdiff * console.log(pkg === samePkg) // true * console.log(pkg.name) // "csvdiff" * console.log(pkg.description) // "A fast diff tool for comparing csv files" * console.log(pkg.programs) // ["csvdiff"] * console.log(pkg.versions[0]) // "1.4.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/aswinkarthik/csvdiff.md * @see https://ts-pkgx.netlify.app/usage */ export declare const csvdiffPackage: { /** * The display name of this package. */ name: 'csvdiff'; /** * The canonical domain name for this package. */ domain: 'github.com/aswinkarthik/csvdiff'; /** * Brief description of what this package does. */ description: 'A fast diff tool for comparing csv files'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/aswinkarthik/csvdiff/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install csvdiff'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['csvdiff']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.4.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type CsvdiffPackage = typeof csvdiffPackage