ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.29 kB
TypeScript
/**
* **liblinear** - LIBLINEAR -- A Library for Large Linear Classification
*
* @domain `csie.ntu.edu.tw/cjlin/liblinear`
* @programs `predict`, `train`
* @version `2.49.0` (3 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +csie.ntu.edu.tw/cjlin/liblinear -- $SHELL -i`
* @name `liblinear`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.liblinear
* // Or access via domain
* const samePkg = pantry.csientuedutwcjlinliblinear
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "liblinear"
* console.log(pkg.description) // "LIBLINEAR -- A Library for Large Linear Classif..."
* console.log(pkg.programs) // ["predict", "train"]
* console.log(pkg.versions[0]) // "2.49.0" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/csie-ntu-edu-tw/cjlin/liblinear.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const liblinearPackage: {
/**
* The display name of this package.
*/
name: 'liblinear';
/**
* The canonical domain name for this package.
*/
domain: 'csie.ntu.edu.tw/cjlin/liblinear';
/**
* Brief description of what this package does.
*/
description: 'LIBLINEAR -- A Library for Large Linear Classification';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/csie.ntu.edu.tw/cjlin/liblinear/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +csie.ntu.edu.tw/cjlin/liblinear -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['predict', 'train'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['2.49.0', '2.48.0', '2.47.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type LiblinearPackage = typeof liblinearPackage