ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.43 kB
TypeScript
/**
* **logdy** - Web based real-time log viewer. Stream ANY content to a web UI with autogenerated filters. Parse any format with TypeScript.
*
* @domain `logdy.dev`
* @programs `logdy`
* @version `0.17.1` (15 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install logdy`
* @name `logdy`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.logdy
* // Or access via domain
* const samePkg = pantry.logdydev
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "logdy"
* console.log(pkg.description) // "Web based real-time log viewer. Stream ANY cont..."
* console.log(pkg.programs) // ["logdy"]
* console.log(pkg.versions[0]) // "0.17.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/logdy-dev.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const logdyPackage: {
/**
* The display name of this package.
*/
name: 'logdy';
/**
* The canonical domain name for this package.
*/
domain: 'logdy.dev';
/**
* Brief description of what this package does.
*/
description: 'Web based real-time log viewer. Stream ANY content to a web UI with autogenerated filters. Parse any format with TypeScript.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/logdy.dev/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install logdy';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['logdy'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.17.1', '0.17.0', '0.16.0', '0.15.0', '0.14.1', '0.14.0', '0.13.3', '0.13.2', '0.13.1', '0.13.0', '0.12.2', '0.12.0', '0.11.0', '0.10.0', '0.9.0'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) logdy -- $SHELL -i';
launchpadInstallCommand: 'launchpad install logdy'
};
export type LogdyPackage = typeof logdyPackage