ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.31 kB
TypeScript
/**
* **glauth** - A lightweight LDAP server for development, home use, or CI
*
* @domain `github.com/glauth/glauth`
* @programs `glauth`, `glauth-setup`
* @version `2.4.0` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install glauth`
* @name `glauth`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.glauth
* // Or access via domain
* const samePkg = pantry.githubcomglauthglauth
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "glauth"
* console.log(pkg.description) // "A lightweight LDAP server for development, home..."
* console.log(pkg.programs) // ["glauth", "glauth-setup"]
* console.log(pkg.versions[0]) // "2.4.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/glauth/glauth.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const glauthPackage: {
/**
* The display name of this package.
*/
name: 'glauth';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/glauth/glauth';
/**
* Brief description of what this package does.
*/
description: 'A lightweight LDAP server for development, home use, or CI';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/glauth/glauth/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/glauth/glauth';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install glauth';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['glauth', 'glauth-setup'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.4.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) +github.com/glauth/glauth -- $SHELL -i';
launchpadInstallCommand: 'launchpad install glauth'
};
export type GlauthPackage = typeof glauthPackage