ts-pkgx
Version:
A library & CLI for managing packages
75 lines • 2.39 kB
TypeScript
/**
* **slsh** - Library for creating multi-platform software
*
* @domain `jedsoft.org/slang`
* @programs `slsh`
* @version `2.3.3` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install slsh`
* @aliases `slsh`, `s-lang`
* @dependencies `libpng.org`, `linux:pcre.org` (includes OS-specific dependencies with `os:package` format)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.slsh
* // Or access via domain
* const samePkg = pantry.jedsoftorgslang
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "slang"
* console.log(pkg.description) // "Library for creating multi-platform software"
* console.log(pkg.programs) // ["slsh"]
* console.log(pkg.versions[0]) // "2.3.3" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/jedsoft-org/slang.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const slshPackage: {
/**
* The display name of this package.
*/
name: 'slang';
/**
* The canonical domain name for this package.
*/
domain: 'jedsoft.org/slang';
/**
* Brief description of what this package does.
*/
description: 'Library for creating multi-platform software';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/jedsoft.org/slang/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install slsh';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['slsh'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
* OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`).
*/
dependencies: readonly ['libpng.org', 'linux:pcre.org'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.3.3'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['slsh', 's-lang']
};
export type SlshPackage = typeof slshPackage