ts-pkgx
Version:
A library & CLI for managing packages
69 lines • 2.53 kB
TypeScript
/**
* **sing-box** - The universal proxy platform
*
* @domain `sing-box.app`
* @programs `sing-box`
* @version `1.11.14` (52 versions available)
* @versions From newest version to oldest.
*
* @install `launchpad install sing-box`
* @aliases `sing-box`
*
* @example
* ```typescript
* import { pantry } from 'ts-pkgx'
*
* // Access via alias (recommended)
* const pkg = pantry.singbox
* // Or access via domain
* const samePkg = pantry.singboxapp
* console.log(pkg === samePkg) // true
* console.log(pkg.name) // "sing-box.app"
* console.log(pkg.description) // "The universal proxy platform"
* console.log(pkg.programs) // ["sing-box"]
* console.log(pkg.versions[0]) // "1.11.14" (latest)
* ```
*
* @see https://ts-pkgx.netlify.app/packages/sing-box-app.md
* @see https://ts-pkgx.netlify.app/usage
*/
export declare const singboxPackage: {
/**
* The display name of this package.
*/
name: 'sing-box.app';
/**
* The canonical domain name for this package.
*/
domain: 'sing-box.app';
/**
* Brief description of what this package does.
*/
description: 'The universal proxy platform';
packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/sing-box.app/package.yml';
homepageUrl: '';
githubUrl: 'https://github.com/pkgxdev/pantry/';
/**
* Command to install this package using launchpad.
* @example launchpad install package-name
*/
installCommand: 'launchpad install sing-box';
/**
* Executable programs provided by this package.
* These can be run after installation.
*/
programs: readonly ['sing-box'];
companions: readonly [];
dependencies: readonly [];
/**
* Available versions from newest to oldest.
* @see https://ts-pkgx.netlify.app/usage for installation instructions
*/
versions: readonly ['1.11.14', '1.11.13', '1.11.12', '1.11.11', '1.11.10', '1.11.9', '1.11.8', '1.11.7', '1.11.6', '1.11.5', '1.11.4', '1.11.3', '1.11.2', '1.11.1', '1.11.0', '1.10.7', '1.10.6', '1.10.5', '1.10.4', '1.10.3', '1.10.2', '1.10.1', '1.10.0', '1.9.7', '1.9.6', '1.9.5', '1.9.4', '1.9.3', '1.9.2', '1.9.1', '1.9.0', '1.8.14', '1.8.13', '1.8.12', '1.8.11', '1.8.10', '1.8.9', '1.8.8', '1.8.7', '1.8.6', '1.8.5', '1.8.4', '1.8.2', '1.8.1', '1.8.0', '1.7.8', '1.7.7', '1.7.6', '1.7.5', '1.7.4', '1.7.3', '1.7.2'];
/**
* Alternative names for this package.
* You can use any of these names to access the package.
*/
aliases: readonly ['sing-box']
};
export type SingboxPackage = typeof singboxPackage