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