UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.29 kB
/** * **commit** - Command-line tool to guide your template commit messages anywhere, anytime * * @domain `github.com/alt-art/commit` * @programs `commit` * @version `0.7.0` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install commit` * @name `commit` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.commit * // Or access via domain * const samePkg = pantry.githubcomaltartcommit * console.log(pkg === samePkg) // true * console.log(pkg.name) // "commit" * console.log(pkg.description) // "Command-line tool to guide your template commit..." * console.log(pkg.programs) // ["commit"] * console.log(pkg.versions[0]) // "0.7.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/alt-art/commit.md * @see https://ts-pkgx.netlify.app/usage */ export declare const commitPackage: { /** * The display name of this package. */ name: 'commit'; /** * The canonical domain name for this package. */ domain: 'github.com/alt-art/commit'; /** * Brief description of what this package does. */ description: 'Command-line tool to guide your template commit messages anywhere, anytime'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/alt-art/commit/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install commit'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['commit']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.7.0', '0.6.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) commit -- $SHELL -i'; launchpadInstallCommand: 'launchpad install commit' }; export type CommitPackage = typeof commitPackage