ts-pkgx
Version:
A library & CLI for managing packages
75 lines • 2.66 kB
TypeScript
/**
* **zathura** - Document viewer
*
* @domain `pwmt.org/zathura`
* @programs `zathura`
* @version `0.5.11` (6 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install zathura`
* @name `zathura`
* @dependencies `gnome.org/glib^2.72`, `gnome.org/adwaita-icon-theme`, `gnu.org/gettext`, ... (+8 more) (includes OS-specific dependencies with `os:package` format)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.zathura
* // Or access via domain
* const samePkg = pantry.pwmtorgzathura
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "zathura"
* console.log(pkg.description) // "Document viewer"
* console.log(pkg.programs) // ["zathura"]
* console.log(pkg.versions[0]) // "0.5.11" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/pwmt-org/zathura.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const zathuraPackage: {
/**
* The display name of this package.
*/
name: 'zathura';
/**
* The canonical domain name for this package.
*/
domain: 'pwmt.org/zathura';
/**
* Brief description of what this package does.
*/
description: 'Document viewer';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pwmt.org/zathura/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install zathura';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['zathura'];
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^2.72', 'gnome.org/adwaita-icon-theme', 'gnu.org/gettext', 'freedesktop.org/appstream', 'pwmt.org/girara@0', 'freedesktop.org/intltool', 'freedesktop.org/desktop-file-utils', 'darwinsys.com/file', 'gtk.org/gtk3^3.22', 'sqlite.org@3', 'darwin:gnome.org/gtk-mac-integration-gtk3'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.5.11', '0.5.10', '0.5.9', '0.5.8', '0.5.7', '0.5.6'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type ZathuraPackage = typeof zathuraPackage