ts-pkgx
Version:
A library & CLI for managing packages
76 lines • 2.25 kB
TypeScript
/**
* **kaggle** - Official Kaggle API
*
* @domain `kaggle.com`
* @programs `kaggle`
* @version `1.7.4.5` (5 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install kaggle`
* @name `kaggle`
* @dependencies `pkgx.sh^1`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.kaggle
* // Or access via domain
* const samePkg = pantry.kagglecom
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "kaggle"
* console.log(pkg.description) // "Official Kaggle API"
* console.log(pkg.programs) // ["kaggle"]
* console.log(pkg.versions[0]) // "1.7.4.5" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/kaggle-com.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const kagglePackage: {
/**
* The display name of this package.
*/
name: 'kaggle';
/**
* The canonical domain name for this package.
*/
domain: 'kaggle.com';
/**
* Brief description of what this package does.
*/
description: 'Official Kaggle API';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/kaggle.com/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install kaggle';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['kaggle'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
*/
dependencies: readonly ['pkgx.sh^1'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.7.4.5', '1.7.4.2', '1.6.3', '1.6.1', '1.5.16'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) kaggle -- $SHELL -i';
launchpadInstallCommand: 'launchpad install kaggle'
};
export type KagglePackage = typeof kagglePackage