ts-pkgx
Version:
A library & CLI for managing packages
76 lines • 2.36 kB
TypeScript
/**
* **qrencode** - A fast and compact QR Code encoding library
*
* @domain `fukuchi.org/qrencode`
* @programs `qrencode`
* @version `4.1.1` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install qrencode`
* @name `qrencode`
* @dependencies `libpng.org`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.qrencode
* // Or access via domain
* const samePkg = pantry.fukuchiorgqrencode
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "qrencode"
* console.log(pkg.description) // "A fast and compact QR Code encoding library"
* console.log(pkg.programs) // ["qrencode"]
* console.log(pkg.versions[0]) // "4.1.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/fukuchi-org/qrencode.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const qrencodePackage: {
/**
* The display name of this package.
*/
name: 'qrencode';
/**
* The canonical domain name for this package.
*/
domain: 'fukuchi.org/qrencode';
/**
* Brief description of what this package does.
*/
description: 'A fast and compact QR Code encoding library';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/fukuchi.org/qrencode/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install qrencode';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['qrencode'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['libpng.org'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['4.1.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) qrencode -- $SHELL -i';
launchpadInstallCommand: 'launchpad install qrencode'
};
export type QrencodePackage = typeof qrencodePackage