UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.11 kB
/** * **dexios** - A secure file encryption utility, written in Rust. * * @domain `brxken128.github.io/dexios` * @programs `dexios` * @version `8.8.1` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install dexios` * @name `dexios` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.dexios * // Or access via domain * const samePkg = pantry.brxken128githubiodexios * console.log(pkg === samePkg) // true * console.log(pkg.name) // "dexios" * console.log(pkg.description) // "A secure file encryption utility, written in Rust." * console.log(pkg.programs) // ["dexios"] * console.log(pkg.versions[0]) // "8.8.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/brxken128-github-io/dexios.md * @see https://ts-pkgx.netlify.app/usage */ export declare const dexiosPackage: { /** * The display name of this package. */ name: 'dexios'; /** * The canonical domain name for this package. */ domain: 'brxken128.github.io/dexios'; /** * Brief description of what this package does. */ description: 'A secure file encryption utility, written in Rust.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/brxken128.github.io/dexios/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install dexios'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['dexios']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['8.8.1']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type DexiosPackage = typeof dexiosPackage