ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.35 kB
TypeScript
/**
* **rage** - A simple, secure and modern file encryption tool (and Rust library) with small explicit keys, no config options, and UNIX-style composability.
*
* @domain `crates.io/rage`
* @programs `rage`, `rage-keygen`
* @version `0.11.1` (6 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install +crates.io/rage -- $SHELL -i`
* @name `rage`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.rage
* // Or access via domain
* const samePkg = pantry.cratesiorage
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "rage"
* console.log(pkg.description) // "A simple, secure and modern file encryption too..."
* console.log(pkg.programs) // ["rage", "rage-keygen"]
* console.log(pkg.versions[0]) // "0.11.1" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/crates-io/rage.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const ragePackage: {
/**
* The display name of this package.
*/
name: 'rage';
/**
* The canonical domain name for this package.
*/
domain: 'crates.io/rage';
/**
* Brief description of what this package does.
*/
description: 'A simple, secure and modern file encryption tool (and Rust library) with small explicit keys, no config options, and UNIX-style composability.';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/rage/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install +crates.io/rage -- $SHELL -i';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['rage', 'rage-keygen'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['0.11.1', '0.11.0', '0.10.1', '0.10.0', '0.9.3', '0.9.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type RagePackage = typeof ragePackage