UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.13 kB
/** * **csvlens** - Command line csv viewer * * @domain `github.com/YS-L/csvlens` * @programs `csvlens` * @version `0.13.0` (12 versions available) * @versions From newest version to oldest. * * @install `launchpad install csvlens` * @name `csvlens` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.csvlens * // Or access via domain * const samePkg = pantry.githubcomyslcsvlens * console.log(pkg === samePkg) // true * console.log(pkg.name) // "csvlens" * console.log(pkg.description) // "Command line csv viewer" * console.log(pkg.programs) // ["csvlens"] * console.log(pkg.versions[0]) // "0.13.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/YS-L/csvlens.md * @see https://ts-pkgx.netlify.app/usage */ export declare const csvlensPackage: { /** * The display name of this package. */ name: 'csvlens'; /** * The canonical domain name for this package. */ domain: 'github.com/YS-L/csvlens'; /** * Brief description of what this package does. */ description: 'Command line csv viewer'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/YS-L/csvlens/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install csvlens'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['csvlens']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.13.0', '0.12.0', '0.11.0', '0.10.1', '0.10.0', '0.9.1', '0.9.0', '0.8.1', '0.8.0', '0.7.0', '0.6.0', '0.5.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type CsvlensPackage = typeof csvlensPackage