UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.15 kB
/** * **rome** - Unified developer tools for JavaScript, TypeScript, and the web * * @domain `rome.tools` * @programs `rome` * @version `0.4.2` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install rome` * @name `rome` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.rome * // Or access via domain * const samePkg = pantry.rometools * console.log(pkg === samePkg) // true * console.log(pkg.name) // "rome" * console.log(pkg.description) // "Unified developer tools for JavaScript, TypeScr..." * console.log(pkg.programs) // ["rome"] * console.log(pkg.versions[0]) // "0.4.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/rome-tools.md * @see https://ts-pkgx.netlify.app/usage */ export declare const romePackage: { /** * The display name of this package. */ name: 'rome'; /** * The canonical domain name for this package. */ domain: 'rome.tools'; /** * Brief description of what this package does. */ description: 'Unified developer tools for JavaScript, TypeScript, and the web'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/rome.tools/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install rome'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['rome']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.4.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) rome -- $SHELL -i'; launchpadInstallCommand: 'launchpad install rome' }; export type RomePackage = typeof romePackage