UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

68 lines 1.94 kB
/** * **eclint** - pkgx package * * @domain `gitlab.com/greut/eclint` * @programs `eclint` * @version `0.5.1` (3 versions available) * @versions From newest version to oldest. * * @install `launchpad install eclint` * @name `eclint` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.eclint * // Or access via domain * const samePkg = pantry.gitlabcomgreuteclint * console.log(pkg === samePkg) // true * console.log(pkg.name) // "eclint" * console.log(pkg.programs) // ["eclint"] * console.log(pkg.versions[0]) // "0.5.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/gitlab-com/greut/eclint.md * @see https://ts-pkgx.netlify.app/usage */ export declare const eclintPackage: { /** * The display name of this package. */ name: 'eclint'; /** * The canonical domain name for this package. */ domain: 'gitlab.com/greut/eclint'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gitlab.com/greut/eclint/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install eclint'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['eclint']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.5.1', '0.5.0', '0.4.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type EclintPackage = typeof eclintPackage