/** * **envchain** - Environment variables meet macOS Keychain and gnome-keyring <3 * * @domain `github.com/sorah/envchain` * @programs `envchain` * @version `1.1.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/sorah/envchain` * @dependencies `linux:gnu.org/readline`, `linux:gnome.org/libsecret` (includes OS-specific dependencies with `os:package` format) * @buildDependencies `llvm.org`, `cmake.org@^3` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomsorahenvchain * console.log(pkg.name) // "envchain" * console.log(pkg.description) // "Environment variables meet macOS Keychain and g..." * console.log(pkg.programs) // ["envchain"] * console.log(pkg.versions[0]) // "1.1.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/sorah/envchain.md * @see https://ts-pkgx.netlify.app/usage */ export declare const envchainPackage: { /** * The display name of this package. */ name: 'envchain'; /** * The canonical domain name for this package. */ domain: 'github.com/sorah/envchain'; /** * Brief description of what this package does. */ description: 'Environment variables meet macOS Keychain and gnome-keyring <3'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/sorah/envchain/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/sorah/envchain'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/sorah/envchain'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/sorah/envchain -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/sorah/envchain'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['envchain']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['linux:gnu.org/readline', 'linux:gnome.org/libsecret']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['llvm.org', 'cmake.org@^3']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.1.0']; aliases: readonly [] }; export type EnvchainPackage = typeof envchainPackage