UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

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