ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.2 kB
TypeScript
/**
* **blink** - tiniest x86-64-linux emulator
*
* @domain `github.com/jart/blink`
* @programs `blink`, `blinkenlights`
* @version `0.0.0` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install blink`
* @name `blink`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.blink
* // Or access via domain
* const samePkg = pantry.githubcomjartblink
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "blink"
* console.log(pkg.description) // "tiniest x86-64-linux emulator"
* console.log(pkg.programs) // ["blink", "blinkenlights"]
* console.log(pkg.versions[0]) // "0.0.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/jart/blink.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const blinkPackage: {
/**
* The display name of this package.
*/
name: 'blink';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/jart/blink';
/**
* Brief description of what this package does.
*/
description: 'tiniest x86-64-linux emulator';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/jart/blink/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install blink';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['blink', 'blinkenlights'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.0.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/jart/blink -- $SHELL -i';
launchpadInstallCommand: 'launchpad install blink'
};
export type BlinkPackage = typeof blinkPackage