UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.19 kB
/** * **jwt** - A super fast CLI tool to decode and encode JWTs built in Rust * * @domain `crates.io/jwt-cli` * @programs `jwt` * @version `6.2.0` (4 versions available) * @versions From newest version to oldest. * * @install `launchpad install jwt` * @name `jwt` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.jwt * // Or access via domain * const samePkg = pantry.cratesiojwtcli * console.log(pkg === samePkg) // true * console.log(pkg.name) // "jwt" * console.log(pkg.description) // "A super fast CLI tool to decode and encode JWTs..." * console.log(pkg.programs) // ["jwt"] * console.log(pkg.versions[0]) // "6.2.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/jwt-cli.md * @see https://ts-pkgx.netlify.app/usage */ export declare const jwtPackage: { /** * The display name of this package. */ name: 'jwt'; /** * The canonical domain name for this package. */ domain: 'crates.io/jwt-cli'; /** * Brief description of what this package does. */ description: 'A super fast CLI tool to decode and encode JWTs built in Rust'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/jwt-cli/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install jwt'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['jwt']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['6.2.0', '6.1.1', '6.1.0', '6.0.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) jwt -- $SHELL -i'; launchpadInstallCommand: 'launchpad install jwt' }; export type JwtPackage = typeof jwtPackage