ts-pkgx
Version:
A library & CLI for managing packages
60 lines • 2.17 kB
TypeScript
/**
* **glfw.org** - A multi-platform library for OpenGL, OpenGL ES, Vulkan, window and input
*
* @domain `glfw.org`
* @version `3.4.0` (3 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +glfw.org -- $SHELL -i`
* @dependencies `linux:freeglut.sourceforge.io^3.4`, `linux:x.org/xcursor^1.2`, `linux:xkbcommon.org^1.0`, ... (+1 more) (includes OS-specific dependencies with `os:package` format)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.glfworg
* console.log(pkg.name) // "glfw.org"
* console.log(pkg.description) // "A multi-platform library for OpenGL, OpenGL ES,..."
* console.log(pkg.versions[0]) // "3.4.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/glfw-org.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const glfworgPackage: {
/**
* The display name of this package.
*/
name: 'glfw.org';
/**
* The canonical domain name for this package.
*/
domain: 'glfw.org';
/**
* Brief description of what this package does.
*/
description: 'A multi-platform library for OpenGL, OpenGL ES, Vulkan, window and input';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/glfw.org/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/glfw/glfw';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +glfw.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 ['linux:freeglut.sourceforge.io^3.4', 'linux:x.org/xcursor^1.2', 'linux:xkbcommon.org^1.0', 'linux:mesa3d.org^23.3'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['3.4.0', '3.3.10', '3.3.9'];
aliases: readonly []
};
export type GlfworgPackage = typeof glfworgPackage