UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

74 lines 2.29 kB
/** * **git-crypt** - Enable transparent encryption/decryption of files in a git repo * * @domain `agwa.name/git-crypt` * @programs `git-crypt` * @version `0.7.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install git-crypt` * @name `git-crypt` * @dependencies `openssl.org^1.1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.gitcrypt * // Or access via domain * const samePkg = pantry.agwanamegitcrypt * console.log(pkg === samePkg) // true * console.log(pkg.name) // "git-crypt" * console.log(pkg.description) // "Enable transparent encryption/decryption of fil..." * console.log(pkg.programs) // ["git-crypt"] * console.log(pkg.versions[0]) // "0.7.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/agwa-name/git-crypt.md * @see https://ts-pkgx.netlify.app/usage */ export declare const gitcryptPackage: { /** * The display name of this package. */ name: 'git-crypt'; /** * The canonical domain name for this package. */ domain: 'agwa.name/git-crypt'; /** * Brief description of what this package does. */ description: 'Enable transparent encryption/decryption of files in a git repo'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/agwa.name/git-crypt/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install git-crypt'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['git-crypt']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openssl.org^1.1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.7.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly [] }; export type GitcryptPackage = typeof gitcryptPackage