ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.79 kB
TypeScript
/**
* **rsvg-convert** - Read-only mirror of https://gitlab.gnome.org/GNOME/librsvg
*
* @domain `gnome.org/librsvg`
* @programs `rsvg-convert`
* @version `2.60.0` (30 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install rsvg-convert`
* @aliases `rsvg-convert`
* @dependencies `cairographics.org^1.18`, `gnome.org/pango@1`, `gnome.org/gdk-pixbuf@2`, ... (+2 more)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.rsvgconvert
* // Or access via domain
* const samePkg = pantry.gnomeorglibrsvg
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "librsvg"
* console.log(pkg.description) // "Read-only mirror of https://gitlab.gnome.org/GN..."
* console.log(pkg.programs) // ["rsvg-convert"]
* console.log(pkg.versions[0]) // "2.60.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/gnome-org/librsvg.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const rsvgconvertPackage: {
/**
* The display name of this package.
*/
name: 'librsvg';
/**
* The canonical domain name for this package.
*/
domain: 'gnome.org/librsvg';
/**
* Brief description of what this package does.
*/
description: 'Read-only mirror of https://gitlab.gnome.org/GNOME/librsvg';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnome.org/librsvg/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install rsvg-convert';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['rsvg-convert'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['cairographics.org^1.18', 'gnome.org/pango@1', 'gnome.org/gdk-pixbuf@2', 'gnome.org/glib@2', 'gnu.org/gettext^0.21'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.60.0', '2.59.2', '2.59.1', '2.59.0', '2.58.5', '2.58.4', '2.58.3', '2.58.2', '2.58.1', '2.58.0', '2.57.91', '2.57.90', '2.57.3', '2.57.2', '2.57.1', '2.57.0', '2.56.93', '2.56.92', '2.56.4', '2.56.3', '2.56.2', '2.56.1', '2.55.3', '2.55.1', '2.54.7', '2.54.6', '2.52.11', '2.52.10', '2.50.9', '2.50.8'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['rsvg-convert']
};
export type RsvgconvertPackage = typeof rsvgconvertPackage