ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.24 kB
TypeScript
/**
* **pls** - pls is a prettier and powerful ls(1) for the pros.
*
* @domain `dhruvkb.dev/pls`
* @programs `pls`
* @version `2023.12.22` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install pls`
* @name `pls`
* @dependencies `libgit2.org~1.7 # links to libgit2.so.1.7`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.pls
* // Or access via domain
* const samePkg = pantry.dhruvkbdevpls
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "pls"
* console.log(pkg.description) // "pls is a prettier and powerful ls(1) for the pros."
* console.log(pkg.programs) // ["pls"]
* console.log(pkg.versions[0]) // "2023.12.22" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/dhruvkb-dev/pls.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const plsPackage: {
/**
* The display name of this package.
*/
name: 'pls';
/**
* The canonical domain name for this package.
*/
domain: 'dhruvkb.dev/pls';
/**
* Brief description of what this package does.
*/
description: 'pls is a prettier and powerful ls(1) for the pros.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/dhruvkb.dev/pls/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install pls';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['pls'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['libgit2.org~1.7 # links to libgit2.so.1.7'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2023.12.22'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type PlsPackage = typeof plsPackage