{
  "name": "filter-scan-dir",
  "version": "1.6.0",
  "description": "Recursively scan and filter directory for a flat array of files",
  "type": "module",
  "types": "dist-esm/index.d.ts",
  "main": "dist-cjs/index.cjs",
  "module": "dist-esm/index.js",
  "exports": {
    ".": {
      "import": {
        "types": "./dist-esm/index.d.ts",
        "default": "./dist-esm/index.js"
      },
      "require": {
        "types": "./dist-cjs/index.d.ts",
        "default": "./index.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "scripts": {
    "build": "xrun --serial _clean _build:all _build:cjs:fix",
    "_clean": "rm -rf dist-*",
    "_build:all": "xrun --concurrent _build:esm _build:cjs",
    "_build:esm": "tsc --build tsconfig.esm.json",
    "_build:cjs": "tsc --build tsconfig.cjs.json",
    "_build:cjs:fix": "ts2mjs --cjs --skip-ts --remove-source dist-cjs",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:ui": "vitest --ui",
    "coverage": "vitest run --coverage",
    "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
    "ci": "xrun --serial build test coverage",
    "clean": "rm -rf dist-* coverage",
    "prepublishOnly": "xrun ci",
    "docs": "typedoc src/index.ts --out docs && touch docs/.nojekyll",
    "postpack": "publish-util-postpack"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jchip/filter-scan-dir.git"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.com/"
  },
  "files": [
    "index.cjs",
    "dist-cjs",
    "dist-esm"
  ],
  "keywords": [
    "util",
    "recursive",
    "filter",
    "scan",
    "walk",
    "dir",
    "directory",
    "readdir",
    "fs",
    "fast",
    "glob"
  ],
  "author": "Joel Chen <joel123@gmail.com>",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/jchip/filter-scan-dir/issues"
  },
  "homepage": "https://github.com/jchip/filter-scan-dir",
  "dependencies": {},
  "engines": {
    "node": ">=12"
  }
}
