ts-pkgx
Version:
A library & CLI for managing packages
60 lines • 1.86 kB
TypeScript
/**
* **nasm.us** - A cross-platform x86 assembler with an Intel-like syntax
*
* @domain `nasm.us`
* @programs `nasm`, `ndisasm`
* @version `2.16.3` (3 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +nasm.us -- $SHELL -i`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* const pkg = pantry.nasmus
* console.log(pkg.name) // "nasm.us"
* console.log(pkg.description) // "A cross-platform x86 assembler with an Intel-li..."
* console.log(pkg.programs) // ["nasm", "ndisasm"]
* console.log(pkg.versions[0]) // "2.16.3" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/nasm-us.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const nasmusPackage: {
/**
* The display name of this package.
*/
name: 'nasm.us';
/**
* The canonical domain name for this package.
*/
domain: 'nasm.us';
/**
* Brief description of what this package does.
*/
description: 'A cross-platform x86 assembler with an Intel-like syntax';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/nasm.us/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +nasm.us -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['nasm', 'ndisasm'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.16.3', '2.16.2', '2.15.5'];
aliases: readonly []
};
export type NasmusPackage = typeof nasmusPackage