UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.36 kB
/** * **dprint** - Pluggable and configurable code formatting platform written in Rust. * * @domain `dprint.dev` * @programs `dprint` * @version `0.50.0` (27 versions available) * @versions From newest version to oldest. * * @install `launchpad install dprint` * @aliases `dprint` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.dprint * // Or access via domain * const samePkg = pantry.dprintdev * console.log(pkg === samePkg) // true * console.log(pkg.name) // "dprint.dev" * console.log(pkg.description) // "Pluggable and configurable code formatting plat..." * console.log(pkg.programs) // ["dprint"] * console.log(pkg.versions[0]) // "0.50.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/dprint-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const dprintPackage: { /** * The display name of this package. */ name: 'dprint.dev'; /** * The canonical domain name for this package. */ domain: 'dprint.dev'; /** * Brief description of what this package does. */ description: 'Pluggable and configurable code formatting platform written in Rust.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/dprint.dev/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install dprint'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['dprint']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.50.0', '0.49.1', '0.49.0', '0.48.0', '0.47.6', '0.47.5', '0.47.4', '0.47.2', '0.47.1', '0.47.0', '0.46.3', '0.46.2', '0.46.1', '0.46.0', '0.45.1', '0.45.0', '0.44.0', '0.43.2', '0.43.1', '0.43.0', '0.42.5', '0.42.3', '0.42.2', '0.42.1', '0.42.0', '0.41.0', '0.40.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['dprint'] }; export type DprintPackage = typeof dprintPackage