UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.57 kB
/** * **biome** - A toolchain for web projects, aimed to provide functionalities to maintain them. Biome offers formatter and linter, usable via CLI and LSP. * * @domain `biomejs.dev` * @programs `biome` * @version `1.9.4` (28 versions available) * @versions From newest version to oldest. * * @install `launchpad install biome` * @name `biome` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.biome * // Or access via domain * const samePkg = pantry.biomejsdev * console.log(pkg === samePkg) // true * console.log(pkg.name) // "biome" * console.log(pkg.description) // "A toolchain for web projects, aimed to provide ..." * console.log(pkg.programs) // ["biome"] * console.log(pkg.versions[0]) // "1.9.4" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/biomejs-dev.md * @see https://ts-pkgx.netlify.app/usage */ export declare const biomePackage: { /** * The display name of this package. */ name: 'biome'; /** * The canonical domain name for this package. */ domain: 'biomejs.dev'; /** * Brief description of what this package does. */ description: 'A toolchain for web projects, aimed to provide functionalities to maintain them. Biome offers formatter and linter, usable via CLI and LSP.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/biomejs.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 biome'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['biome']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.9.4', '1.9.3', '1.9.2', '1.9.1', '1.9.0', '1.8.3', '1.8.2', '1.8.1', '1.8.0', '1.7.3', '1.7.2', '1.7.1', '1.7.0', '1.6.4', '1.6.3', '1.6.2', '1.6.1', '1.6.0', '1.5.3', '1.5.2', '1.5.1', '1.5.0', '1.4.1', '1.4.0', '1.3.3', '1.3.1', '1.3.0', '1.2.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) biome -- $SHELL -i'; launchpadInstallCommand: 'launchpad install biome' }; export type BiomePackage = typeof biomePackage