{
  "name": "yargs-file-commands",
  "description": "A yargs helper function that lets you define your commands structure via directory and file naming conventions.",
  "version": "0.0.20",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "source": "./src/index.ts",
  "license": "MIT",
  "author": "Ben Houston <neuralsoft@gmail.com> (https://benhouston3d.com)",
  "keywords": [
    "yargs",
    "file-router",
    "files",
    "directory",
    "automatic",
    "commandDir",
    "helper",
    "nodejs",
    "typescript"
  ],
  "homepage": "https://github.com/bhouston/yargs-file-commands#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bhouston/yargs-file-commands"
  },
  "bugs": {
    "url": "https://github.com/bhouston/yargs-file-commands/issues"
  },
  "files": [
    "dist",
    "src",
    "package.json",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "peerDependencies": {
    "yargs": "^17"
  },
  "devDependencies": {
    "@types/node": "^22.10.0",
    "@types/yargs": "^17.0.33",
    "yargs": "^17.0.0"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "scripts": {
    "build": "tsc",
    "typecheck": "tsc --noEmit",
    "test": "tsc && node --test dist/**/*.test.js --test-concurrency=1",
    "lint": "eslint --fix \"src/**/*.{ts,tsx}\"",
    "format": "prettier \"src/**/*.{js,jsx,css,md,html,ts,tsx,json,yaml}\" --check"
  }
}