UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.38 kB
/** * **uriparse** - :hocho: Strictly RFC 3986 compliant URI parsing and handling library written in C89; moved from SourceForge to GitHub * * @domain `uriparser.github.io` * @programs `uriparse` * @version `0.9.8` (2 versions available) * @versions From newest version to oldest. * * @install `launchpad install uriparse` * @name `uriparse` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.uriparse * // Or access via domain * const samePkg = pantry.uriparsergithubio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "uriparse" * console.log(pkg.description) // ":hocho: Strictly RFC 3986 compliant URI parsing..." * console.log(pkg.programs) // ["uriparse"] * console.log(pkg.versions[0]) // "0.9.8" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/uriparser-github-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const uriparsePackage: { /** * The display name of this package. */ name: 'uriparse'; /** * The canonical domain name for this package. */ domain: 'uriparser.github.io'; /** * Brief description of what this package does. */ description: ':hocho: Strictly RFC 3986 compliant URI parsing and handling library written in C89; moved from SourceForge to GitHub'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/uriparser.github.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install uriparse'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['uriparse']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.9.8', '0.9.7']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) uriparse -- $SHELL -i'; launchpadInstallCommand: 'launchpad install uriparse' }; export type UriparsePackage = typeof uriparsePackage