UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.36 kB
/** * **git-sizer** - Compute various size metrics for a Git repository, flagging those that might cause problems * * @domain `github.com/github/git-sizer` * @programs `git-sizer` * @version `1.5.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install git-sizer` * @name `git-sizer` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.gitsizer * // Or access via domain * const samePkg = pantry.githubcomgithubgitsizer * console.log(pkg === samePkg) // true * console.log(pkg.name) // "git-sizer" * console.log(pkg.description) // "Compute various size metrics for a Git reposito..." * console.log(pkg.programs) // ["git-sizer"] * console.log(pkg.versions[0]) // "1.5.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/github/git-sizer.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gitsizerPackage: { /** * The display name of this package. */ name: 'git-sizer'; /** * The canonical domain name for this package. */ domain: 'github.com/github/git-sizer'; /** * Brief description of what this package does. */ description: 'Compute various size metrics for a Git repository, flagging those that might cause problems'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/github/git-sizer/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install git-sizer'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['git-sizer']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.5.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) git-sizer -- $SHELL -i'; launchpadInstallCommand: 'launchpad install git-sizer' }; export type GitsizerPackage = typeof gitsizerPackage