ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.26 kB
TypeScript
/**
* **gopass** - The slightly more awesome standard unix password manager for teams
*
* @domain `github.com/gopasspw/gopass`
* @programs `gopass`
* @version `1.15.16` (12 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install gopass`
* @name `gopass`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.gopass
* // Or access via domain
* const samePkg = pantry.githubcomgopasspwgopass
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "gopass"
* console.log(pkg.description) // "The slightly more awesome standard unix passwor..."
* console.log(pkg.programs) // ["gopass"]
* console.log(pkg.versions[0]) // "1.15.16" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/gopasspw/gopass.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const gopassPackage: {
/**
* The display name of this package.
*/
name: 'gopass';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/gopasspw/gopass';
/**
* Brief description of what this package does.
*/
description: 'The slightly more awesome standard unix password manager for teams';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/gopasspw/gopass/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install gopass';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['gopass'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.15.16', '1.15.15', '1.15.14', '1.15.13', '1.15.12', '1.15.11', '1.15.10', '1.15.9', '1.15.8', '1.15.7', '1.15.6', '1.15.5'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type GopassPackage = typeof gopassPackage