ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.18 kB
TypeScript
/**
* **duti** - A command-line tool to select default applications for document types and URL schemes on Mac OS X
*
* @domain `github.com/moretension/duti`
* @programs `duti`
* @version `1.5.4` (1 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install duti`
* @name `duti`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access the package
* const pkg = pantry.duti
* // Or access via domain
* const samePkg = pantry.githubcommoretensionduti
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "duti"
* console.log(pkg.description) // "A command-line tool to select default applicati..."
* console.log(pkg.programs) // ["duti"]
* console.log(pkg.versions[0]) // "1.5.4" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/github-com/moretension/duti.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const dutiPackage: {
/**
* The display name of this package.
*/
name: 'duti';
/**
* The canonical domain name for this package.
*/
domain: 'github.com/moretension/duti';
/**
* Brief description of what this package does.
*/
description: 'A command-line tool to select default applications for document types and URL schemes on Mac OS X';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/moretension/duti/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install duti';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['duti'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.5.4'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly []
};
export type DutiPackage = typeof dutiPackage