ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.34 kB
TypeScript
/**
* **sk** - Fuzzy Finder in rust!
*
* @domain `crates.io/skim`
* @programs `sk`
* @version `0.20.5` (31 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install sk`
* @name `sk`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.sk
* // Or access via domain
* const samePkg = pantry.cratesioskim
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "sk"
* console.log(pkg.description) // "Fuzzy Finder in rust!"
* console.log(pkg.programs) // ["sk"]
* console.log(pkg.versions[0]) // "0.20.5" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/crates-io/skim.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const skPackage: {
/**
* The display name of this package.
*/
name: 'sk';
/**
* The canonical domain name for this package.
*/
domain: 'crates.io/skim';
/**
* Brief description of what this package does.
*/
description: 'Fuzzy Finder in rust!';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/skim/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install sk';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['sk'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.20.5', '0.20.4', '0.20.3', '0.20.2', '0.20.1', '0.20.0', '0.19.0', '0.18.0', '0.17.3', '0.17.2', '0.17.1', '0.17.0', '0.16.2', '0.16.1', '0.16.0', '0.15.7', '0.15.6', '0.15.5', '0.15.4', '0.15.3', '0.15.2', '0.15.1', '0.15.0', '0.14.4', '0.14.3', '0.13.0', '0.12.0', '0.11.12', '0.11.11', '0.11.10', '0.10.4'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) sk -- $SHELL -i';
launchpadInstallCommand: 'launchpad install sk'
};
export type SkPackage = typeof skPackage