UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.03 kB
/** * **tokei** - Program that allows you to count code, quickly * * @domain `crates.io/tokei` * @programs `tokei` * @version `12.1.2` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install tokei` * @name `tokei` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.tokei * // Or access via domain * const samePkg = pantry.cratesiotokei * console.log(pkg === samePkg) // true * console.log(pkg.name) // "tokei" * console.log(pkg.description) // "Program that allows you to count code, quickly" * console.log(pkg.programs) // ["tokei"] * console.log(pkg.versions[0]) // "12.1.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/tokei.md * @see https://ts-pkgx.netlify.app/usage */ export declare const tokeiPackage: { /** * The display name of this package. */ name: 'tokei'; /** * The canonical domain name for this package. */ domain: 'crates.io/tokei'; /** * Brief description of what this package does. */ description: 'Program that allows you to count code, quickly'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/tokei/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install tokei'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['tokei']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['12.1.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type TokeiPackage = typeof tokeiPackage