UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

71 lines 2.35 kB
/** * **dotenv-linter** - ⚡️Lightning-fast linter for .env files. Written in Rust 🦀 * * @domain `dotenv-linter.github.io` * @programs `dotenv-linter` * @version `3.3.0` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install dotenv-linter` * @name `dotenv-linter` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.dotenvlinter * // Or access via domain * const samePkg = pantry.dotenvlintergithubio * console.log(pkg === samePkg) // true * console.log(pkg.name) // "dotenv-linter" * console.log(pkg.description) // "⚡️Lightning-fast linter for .env files. Written..." * console.log(pkg.programs) // ["dotenv-linter"] * console.log(pkg.versions[0]) // "3.3.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/dotenv-linter-github-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const dotenvlinterPackage: { /** * The display name of this package. */ name: 'dotenv-linter'; /** * The canonical domain name for this package. */ domain: 'dotenv-linter.github.io'; /** * Brief description of what this package does. */ description: '⚡️Lightning-fast linter for .env files. Written in Rust 🦀'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/dotenv-linter.github.io/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install dotenv-linter'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['dotenv-linter']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.3.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) dotenv-linter -- $SHELL -i'; launchpadInstallCommand: 'launchpad install dotenv-linter' }; export type DotenvlinterPackage = typeof dotenvlinterPackage