ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.33 kB
TypeScript
/**
* **license-plist** - A license list generator of all your dependencies for iOS applications
*
* @domain `github.com/mono0926/LicensePlist`
* @programs `license-plist`
* @version `3.27.1` (4 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install license-plist`
* @aliases `license-plist`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.licenseplist
* // Or access via domain
* const samePkg = pantry.githubcommono0926licenseplist
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "LicensePlist"
* console.log(pkg.description) // "A license list generator of all your dependenci..."
* console.log(pkg.programs) // ["license-plist"]
* console.log(pkg.versions[0]) // "3.27.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/mono0926/LicensePlist.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const licenseplistPackage: {
/**
* The display name of this package.
*/
name: 'LicensePlist';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/mono0926/LicensePlist';
/**
* Brief description of what this package does.
*/
description: 'A license list generator of all your dependencies for iOS applications';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/mono0926/LicensePlist/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install license-plist';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['license-plist'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['3.27.1', '3.27.0', '3.26.0', '3.25.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['license-plist']
};
export type LicenseplistPackage = typeof licenseplistPackage