UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

78 lines 2.77 kB
/** * **proxy** - Library that provides automatic proxy configuration management * * @domain `libproxy.github.io/libproxy` * @programs `proxy` * @version `0.5.10` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install proxy` * @name `libproxy` * @aliases `proxy` * @dependencies `duktape.org`, `gnome.org/glib`, `curl.se`, ... (+2 more) (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.proxy * // Or access via domain * const samePkg = pantry.libproxygithubiolibproxy * console.log(pkg === samePkg) // true * console.log(pkg.name) // "libproxy" * console.log(pkg.description) // "Library that provides automatic proxy configura..." * console.log(pkg.programs) // ["proxy"] * console.log(pkg.versions[0]) // "0.5.10" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/libproxy-github-io/libproxy.md * @see https://ts-pkgx.netlify.app/usage */ export declare const proxyPackage: { /** * The display name of this package. */ name: 'libproxy'; /** * The canonical domain name for this package. */ domain: 'libproxy.github.io/libproxy'; /** * Brief description of what this package does. */ description: 'Library that provides automatic proxy configuration management'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libproxy.github.io/libproxy/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install proxy'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['proxy']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['duktape.org', 'gnome.org/glib', 'curl.se', 'linux:freedesktop.org/dbus', 'linux:llvm.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.5.10', '0.5.9', '0.5.8', '0.5.7', '0.5.6', '0.5.5', '0.5.4', '0.5.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['proxy']; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) proxy -- $SHELL -i'; launchpadInstallCommand: 'launchpad install proxy' }; export type ProxyPackage = typeof proxyPackage