ts-pkgx
Version:
A library & CLI for managing packages
75 lines • 2.87 kB
TypeScript
/**
* **bk** - build infra & `$ bk build`
*
* @domain `pkgx.sh/brewkit`
* @programs `bk`
* @version `1.16.0` (61 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install bk`
* @name `brewkit`
* @aliases `bk`
* @dependencies `deno.land~1.39 # 1.40 shouts unskippable deprecation warnings`, `gnu.org/bash^5`, `pkgx.sh^1`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.bk
* // Or access via domain
* const samePkg = pantry.pkgxshbrewkit
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "brewkit"
* console.log(pkg.description) // "build infra & `$ bk build`"
* console.log(pkg.programs) // ["bk"]
* console.log(pkg.versions[0]) // "1.16.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/pkgx-sh/brewkit.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const bkPackage: {
/**
* The display name of this package.
*/
name: 'brewkit';
/**
* The canonical domain name for this package.
*/
domain: 'pkgx.sh/brewkit';
/**
* Brief description of what this package does.
*/
description: 'build infra & `$ bk build`';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/pkgx.sh/brewkit/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install bk';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['bk'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['deno.land~1.39 # 1.40 shouts unskippable deprecation warnings', 'gnu.org/bash^5', 'pkgx.sh^1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.16.0', '1.15.0', '1.14.3', '1.14.2', '1.14.1', '1.13.0', '1.12.0', '1.11.2', '1.11.1', '1.11.0', '1.10.7', '1.10.6', '1.10.5', '1.10.4', '1.10.3', '1.10.2', '1.10.1', '1.10.0', '1.9.0', '1.8.2', '1.8.1', '1.8.0', '1.7.0', '1.6.0', '1.5.1', '1.5.0', '1.4.0', '1.3.1', '1.3.0', '1.2.4', '1.2.3', '1.2.2', '1.2.1', '1.1.2', '1.1.1', '1.1.0', '1.0.2', '1.0.1', '1.0.0', '0.55.8', '0.55.7', '0.55.6', '0.55.5', '0.55.4', '0.55.3', '0.55.2', '0.55.1', '0.55.0', '0.54.0', '0.53.0', '0.52.1', '0.52.0', '0.51.0', '0.50.0', '0.49.0', '0.48.0', '0.47.0', '0.46.4', '0.46.3', '0.46.2', '0.46.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['bk']
};
export type BkPackage = typeof bkPackage