ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.05 kB
TypeScript
/**
* **lporg** - Organize Your macOS Launchpad Apps
*
* @domain `github.com/blacktop/lporg`
* @programs `lporg`
* @version `20.4.32` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install lporg`
* @name `lporg`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.lporg
* // Or access via domain
* const samePkg = pantry.githubcomblacktoplporg
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "lporg"
* console.log(pkg.description) // "Organize Your macOS Launchpad Apps"
* console.log(pkg.programs) // ["lporg"]
* console.log(pkg.versions[0]) // "20.4.32" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/blacktop/lporg.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const lporgPackage: {
/**
* The display name of this package.
*/
name: 'lporg';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/blacktop/lporg';
/**
* Brief description of what this package does.
*/
description: 'Organize Your macOS Launchpad Apps';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/blacktop/lporg/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install lporg';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['lporg'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['20.4.32'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type LporgPackage = typeof lporgPackage