UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

76 lines 2.4 kB
/** * **apktool** - Tool for reverse engineering 3rd party, closed, binary Android apps * * @domain `apktool.org` * @programs `apktool` * @version `2.12.0` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install apktool` * @name `apktool` * @dependencies `openjdk.org^21` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.apktool * // Or access via domain * const samePkg = pantry.apktoolorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "apktool" * console.log(pkg.description) // "Tool for reverse engineering 3rd party, closed,..." * console.log(pkg.programs) // ["apktool"] * console.log(pkg.versions[0]) // "2.12.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/apktool-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const apktoolPackage: { /** * The display name of this package. */ name: 'apktool'; /** * The canonical domain name for this package. */ domain: 'apktool.org'; /** * Brief description of what this package does. */ description: 'Tool for reverse engineering 3rd party, closed, binary Android apps'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/apktool.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install apktool'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['apktool']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openjdk.org^21']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.12.0', '2.11.1', '2.11.0', '2.10.0', '2.9.3']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) apktool -- $SHELL -i'; launchpadInstallCommand: 'launchpad install apktool' }; export type ApktoolPackage = typeof apktoolPackage