ts-pkgx
Version:
A library & CLI for managing packages
75 lines • 2.51 kB
TypeScript
/**
* **fastgron** - High-performance JSON to GRON (greppable, flattened JSON) converter
*
* @domain `github.com/adamritter/fastgron`
* @programs `fastgron`
* @version `0.7.7` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install fastgron`
* @name `fastgron`
* @dependencies `curl.se`, `linux:gnu.org/gcc` (includes OS-specific dependencies with `os:package` format)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.fastgron
* // Or access via domain
* const samePkg = pantry.githubcomadamritterfastgron
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "fastgron"
* console.log(pkg.description) // "High-performance JSON to GRON (greppable, flatt..."
* console.log(pkg.programs) // ["fastgron"]
* console.log(pkg.versions[0]) // "0.7.7" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/adamritter/fastgron.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const fastgronPackage: {
/**
* The display name of this package.
*/
name: 'fastgron';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/adamritter/fastgron';
/**
* Brief description of what this package does.
*/
description: 'High-performance JSON to GRON (greppable, flattened JSON) converter';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/adamritter/fastgron/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install fastgron';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['fastgron'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
* OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`).
*/
dependencies: readonly ['curl.se', 'linux:gnu.org/gcc'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.7.7'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type FastgronPackage = typeof fastgronPackage