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