ts-pkgx
Version:
A library & CLI for managing packages
71 lines • 2.37 kB
TypeScript
/**
* **age** - A simple, modern and secure encryption tool (and Go library) with small explicit keys, no config options, and UNIX-style composability.
*
* @domain `filippo.io/age`
* @programs `age`, `age-keygen`
* @version `1.2.1` (3 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install age`
* @name `age`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.age
* // Or access via domain
* const samePkg = pantry.filippoioage
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "age"
* console.log(pkg.description) // "A simple, modern and secure encryption tool (an..."
* console.log(pkg.programs) // ["age", "age-keygen"]
* console.log(pkg.versions[0]) // "1.2.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/filippo-io/age.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const agePackage: {
/**
* The display name of this package.
*/
name: 'age';
/**
* The canonical domain name for this package.
*/
domain: 'filippo.io/age';
/**
* Brief description of what this package does.
*/
description: 'A simple, modern and secure encryption tool (and Go library) with small explicit keys, no config options, and UNIX-style composability.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/filippo.io/age/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install age';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['age', 'age-keygen'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.2.1', '1.2.0', '1.1.1'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly [];
pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +filippo.io/age -- $SHELL -i';
launchpadInstallCommand: 'launchpad install age'
};
export type AgePackage = typeof agePackage