{
  "name": "@avdl/folder-walker",
  "version": "1.0.0",
  "description": "A powerful, fluent, and configurable directory traversal utility for Node.js with TypeScript support",
  "author": "Arjan van der Leden <arjan@vanderleden.com>",
  "license": "MIT",
  "homepage": "https://github.com/arjanvanderleden/folder-walker",
  "repository": {
    "type": "git",
    "url": "https://github.com/arjanvanderleden/folder-walker.git"
  },
  "bugs": {
    "url": "https://github.com/arjanvanderleden/folder-walker/issues"
  },
  "main": "dist/index.js",
  "module": "dist/folder-walker.esm.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/folder-walker.esm.js",
      "require": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=14"
  },
  "scripts": {
    "start": "tsdx watch",
    "build": "tsdx build",
    "test": "tsdx test",
    "test:watch": "tsdx test --watch",
    "lint": "tsdx lint",
    "lint:fix": "tsdx lint --fix",
    "typecheck": "tsc --noEmit",
    "prepare": "npm run build",
    "prepublishOnly": "npm run lint && npm run test && npm run build",
    "size": "size-limit",
    "analyze": "size-limit --why",
    "example:basic": "tsx ./examples/basic-usage.ts",
    "example:async": "tsx ./examples/async-operations.ts",
    "example:filters": "tsx ./examples/custom-filters.ts",
    "example:collectors": "tsx ./examples/type-safe-collectors.ts",
    "examples": "./examples/test-all.sh",
    "examples:list": "echo 'Available examples:' && echo '  npm run example:basic     - Basic usage patterns' && echo '  npm run example:async     - Async operations' && echo '  npm run example:filters   - Custom filtering' && echo '  npm run example:collectors - Type-safe collection' && echo '  npm run examples          - Run all examples'"
  },
  "husky": {
    "hooks": {
      "pre-commit": "tsdx lint"
    }
  },
  "prettier": {
    "printWidth": 80,
    "semi": true,
    "singleQuote": true,
    "trailingComma": "es5"
  },
  "keywords": [
    "folder",
    "directory",
    "walker",
    "traversal",
    "files",
    "filesystem",
    "recursive",
    "async",
    "iterator",
    "typescript"
  ],
  "size-limit": [
    {
      "path": "dist/folder-walker.cjs.production.min.js",
      "limit": "15 KB"
    },
    {
      "path": "dist/folder-walker.esm.js",
      "limit": "15 KB"
    }
  ],
  "devDependencies": {
    "@size-limit/preset-small-lib": "^11.0.1",
    "@types/node": "^20.10.5",
    "husky": "^8.0.3",
    "size-limit": "^11.0.1",
    "tsdx": "^0.14.1",
    "tslib": "^2.6.2",
    "tsx": "^4.20.3",
    "typescript": "^5.3.3"
  }
}
