UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

72 lines 2.69 kB
/** * **github.com/AlDanial/cloc** - cloc counts blank lines, comment lines, and physical lines of source code in many programming languages. * * @domain `github.com/AlDanial/cloc` * @programs `cloc`, `config_data` * @version `2.6.0` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/AlDanial/cloc` * @dependencies `perl.org^5` * @companions `PERL5LIB^$PERL5LIB:{{prefix}}/lib/perl5` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomaldanialcloc * console.log(pkg.name) // "github.com/AlDanial/cloc" * console.log(pkg.description) // "cloc counts blank lines, comment lines, and phy..." * console.log(pkg.programs) // ["cloc", "config_data"] * console.log(pkg.versions[0]) // "2.6.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/AlDanial/cloc.md * @see https://ts-pkgx.netlify.app/usage */ export declare const githubcomaldanialclocPackage: { /** * The display name of this package. */ name: 'github.com/AlDanial/cloc'; /** * The canonical domain name for this package. */ domain: 'github.com/AlDanial/cloc'; /** * Brief description of what this package does. */ description: 'cloc counts blank lines, comment lines, and physical lines of source code in many programming languages.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/AlDanial/cloc/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/AlDanial/cloc'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['cloc', 'config_data']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['PERL5LIB^$PERL5LIB:{{prefix}}/lib/perl5']; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['perl.org^5']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.6.0', '2.4.0', '2.2.0', '2.0.0', '1.98.0']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/AlDanial/cloc -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/AlDanial/cloc' }; export type GithubcomaldanialclocPackage = typeof githubcomaldanialclocPackage