ts-pkgx
Version:
A library & CLI for managing packages
77 lines • 2.65 kB
TypeScript
/**
* **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 envchain`
* @name `envchain`
* @dependencies `linux:gnu.org/readline`, `linux:gnome.org/libsecret` (includes OS-specific dependencies with `os:package` format)
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.envchain
* // Or access via domain
* const samePkg = pantry.githubcomsorahenvchain
* console.log(pkg === samePkg) // true
* 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/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install envchain';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['envchain'];
companions: readonly [];
/**
* Required dependencies for this package.
* These will be automatically installed.
* OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`).
*/
dependencies: readonly ['linux:gnu.org/readline', 'linux:gnome.org/libsecret'];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.1.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) envchain -- $SHELL -i';
launchpadInstallCommand: 'launchpad install envchain'
};
export type EnvchainPackage = typeof envchainPackage