UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

59 lines 2.14 kB
/** * **libsoup.org** - pkgx package * * @domain `libsoup.org` * @version `3.6.5` (10 versions available) * @versions From newest version to oldest. * * @install `launchpad install +libsoup.org -- $SHELL -i` * @dependencies `gnome.org/glib-networking`, `gnutls.org`, `rockdaboot.github.io/libpsl`, ... (+7 more) (includes OS-specific dependencies with `os:package` format) * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.libsouporg * console.log(pkg.name) // "libsoup.org" * console.log(pkg.versions[0]) // "3.6.5" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/libsoup-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const libsouporgPackage: { /** * The display name of this package. */ name: 'libsoup.org'; /** * The canonical domain name for this package. */ domain: 'libsoup.org'; /** * Brief description of what this package does. */ description: ''; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/libsoup.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +libsoup.org -- $SHELL -i'; programs: readonly []; 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 ['gnome.org/glib-networking', 'gnutls.org', 'rockdaboot.github.io/libpsl', 'kerberos.org', 'gnome.org/libxml2', 'sqlite.org', 'nghttp2.org', 'linux:gnu.org/gettext', 'linux:gnome.org/glib', 'linux:github.com/google/brotli']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.6.5', '3.6.4', '3.6.3', '3.6.1', '3.6.0', '3.5.2', '3.5.1', '3.4.5', '3.4.4', '3.2.3']; aliases: readonly [] }; export type LibsouporgPackage = typeof libsouporgPackage