ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.17 kB
TypeScript
/**
* **asn1** - ASN.1 structure parser library
*
* @domain `gnu.org/libtasn1`
* @programs `asn1Coding`, `asn1Decoding`, `asn1Parser`
* @version `4.20.0` (2 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +gnu.org/libtasn1 -- $SHELL -i`
* @aliases `asn1`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.asn1
* // Or access via domain
* const samePkg = pantry.gnuorglibtasn1
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "libtasn1"
* console.log(pkg.description) // "ASN.1 structure parser library"
* console.log(pkg.programs) // ["asn1Coding", "asn1Decoding", ...]
* console.log(pkg.versions[0]) // "4.20.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/gnu-org/libtasn1.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const asn1Package: {
/**
* The display name of this package.
*/
name: 'libtasn1';
/**
* The canonical domain name for this package.
*/
domain: 'gnu.org/libtasn1';
/**
* Brief description of what this package does.
*/
description: 'ASN.1 structure parser library';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/gnu.org/libtasn1/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +gnu.org/libtasn1 -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['asn1Coding', 'asn1Decoding', 'asn1Parser'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['4.20.0', '4.19.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['asn1']
};
export type Asn1Package = typeof asn1Package