UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.44 kB
/** * **normalizer** - Truly universal encoding detector in pure Python * * @domain `github.com/Ousret/charset_normalizer` * @programs `normalizer` * @version `3.4.2` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install normalizer` * @aliases `normalizer` * @dependencies `python.org>=3.11` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.normalizer * // Or access via domain * const samePkg = pantry.githubcomousretcharset_normalizer * console.log(pkg === samePkg) // true * console.log(pkg.name) // "charset_normalizer" * console.log(pkg.description) // "Truly universal encoding detector in pure Python" * console.log(pkg.programs) // ["normalizer"] * console.log(pkg.versions[0]) // "3.4.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/Ousret/charset_normalizer.md * @see https://ts-pkgx.netlify.app/usage */ export declare const normalizerPackage: { /** * The display name of this package. */ name: 'charset_normalizer'; /** * The canonical domain name for this package. */ domain: 'github.com/Ousret/charset_normalizer'; /** * Brief description of what this package does. */ description: 'Truly universal encoding detector in pure Python'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/Ousret/charset_normalizer/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/Ousret/charset_normalizer'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install normalizer'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['normalizer']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['python.org>=3.11']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.4.2', '3.4.1', '3.4.0', '3.3.2']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['normalizer'] }; export type NormalizerPackage = typeof normalizerPackage