ts-pkgx
Version:
A library & CLI for managing packages
74 lines • 2.25 kB
TypeScript
/**
* **rawdog** - Generate and auto-execute Python scripts in the cli
*
* @domain `github.com/abanteai/rawdog`
* @programs `rawdog`
* @version `0.1.6` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install rawdog`
* @name `rawdog`
* @dependencies `pkgx.sh^1`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.rawdog
* // Or access via domain
* const samePkg = pantry.githubcomabanteairawdog
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "rawdog"
* console.log(pkg.description) // "Generate and auto-execute Python scripts in the..."
* console.log(pkg.programs) // ["rawdog"]
* console.log(pkg.versions[0]) // "0.1.6" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/abanteai/rawdog.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const rawdogPackage: {
/**
* The display name of this package.
*/
name: 'rawdog';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/abanteai/rawdog';
/**
* Brief description of what this package does.
*/
description: 'Generate and auto-execute Python scripts in the cli';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/abanteai/rawdog/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install rawdog';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['rawdog'];
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 ['0.1.6'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type RawdogPackage = typeof rawdogPackage