/** * **trurl** - a command line tool for URL parsing and manipulation. * * @domain `curl.se/trurl` * @programs `trurl` * @version `0.16.1` (14 versions available) * @versions From newest version to oldest. * * @install `launchpad install curl.se/trurl` * @homepage https://curl.se/trurl/ * @dependencies `curl.se^7,^8` * @buildDependencies `openssl.org@^1.1` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.curlsetrurl * console.log(pkg.name) // "trurl" * console.log(pkg.description) // "a command line tool for URL parsing and manipul..." * console.log(pkg.programs) // ["trurl"] * console.log(pkg.versions[0]) // "0.16.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/curl-se/trurl.md * @see https://ts-pkgx.netlify.app/usage */ export declare const curlsetrurlPackage: { /** * The display name of this package. */ name: 'trurl'; /** * The canonical domain name for this package. */ domain: 'curl.se/trurl'; /** * Brief description of what this package does. */ description: 'a command line tool for URL parsing and manipulation.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/curl.se/trurl/package.yml'; homepageUrl: 'https://curl.se/trurl/'; githubUrl: 'https://github.com/curl/trurl'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install curl.se/trurl'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +curl.se/trurl -- $SHELL -i'; launchpadInstallCommand: 'launchpad install curl.se/trurl'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['trurl']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['curl.se^7,^8']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['openssl.org@^1.1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.16.1', '0.16.0', '0.15.1', '0.15.0', '0.14.0', '0.13.0', '0.12.0', '0.11.0', '0.10.0', '0.9.0', '0.8.0', '0.7.0', '0.6.0', '0.4.0']; aliases: readonly [] }; export type CurlsetrurlPackage = typeof curlsetrurlPackage