{
  "name": "@puppedo/walk-sync",
  "version": "1.1.1",
  "description": "Synchronously walks through a directory and its subdirectories, returning an array of file paths.",
  "main": "./dist/index.js",
  "typings": "./dist/walk-sync.d.ts",
  "files": [
    "./docs/**/*",
    "./dist/index.js",
    "./dist/index.js.map",
    "./dist/walk-sync.d.ts"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/starikan/PuppeDoWalkSync.git"
  },
  "author": "Starodubov Sergey <4analit@gmail.com>",
  "license": "ISC",
  "keywords": [
    "file system",
    "files",
    "directory",
    "walk",
    "traverse",
    "recursive",
    "synchronous",
    "sync",
    "path",
    "paths",
    "filesystem",
    "node.js",
    "nodejs",
    "utility",
    "helper",
    "tool",
    "io",
    "input/output",
    "file-walker",
    "directory-walker",
    "folder",
    "folders"
  ],
  "scripts": {
    "build": "webpack",
    "build:watch": "webpack --watch",
    "check": "npm run build && npm run lint && npm test && npm run docs",
    "prepublishOnly": "npm install && npm run check",
    "lint": "eslint",
    "test": "jest --coverage && npm run test:generate-badge",
    "test:generate-badge": "node ./scripts/generate-coverage-badge.js",
    "docs:extract": "api-extractor run --local",
    "docs:generate": "api-documenter markdown -i ./temp -o ./docs",
    "docs": "npm run docs:extract && npm run docs:generate",
    "pack:preview": "npm pack --dry-run",
    "release": "npm run prepublishOnly && node scripts/release.js",
    "prepare": "node -e \"try { require('fs').accessSync('.git', require('fs').constants.F_OK); process.exit(0); } catch (e) { process.exit(1); }\" && husky install || echo 'Skipping husky installation (not a git repository)'"
  },
  "devDependencies": {
    "@babel/cli": "7.26.4",
    "@babel/core": "7.26.10",
    "@babel/polyfill": "7.12.1",
    "@babel/preset-env": "7.26.9",
    "@babel/preset-typescript": "7.26.0",
    "@eslint/eslintrc": "3.3.0",
    "@microsoft/api-documenter": "7.25.1",
    "@microsoft/api-extractor": "7.52.1",
    "@types/jest": "29.5.14",
    "@types/node": "22.13.10",
    "@types/webpack-env": "1.18.8",
    "@typescript-eslint/eslint-plugin": "8.26.1",
    "@typescript-eslint/parser": "8.26.1",
    "babel-loader": "10.0.0",
    "clean-webpack-plugin": "4.0.0",
    "core-js": "3.41.0",
    "eslint": "9.22.0",
    "eslint-config-airbnb-base": "15.0.0",
    "eslint-define-config": "2.1.0",
    "eslint-import-resolver-typescript": "4.1.1",
    "eslint-plugin-import": "2.31.0",
    "eslint-plugin-jsdoc": "48.2.0",
    "eslint-plugin-prettier": "5.2.3",
    "eslint-plugin-security": "3.0.1",
    "jest": "29.7.0",
    "prettier": "3.5.3",
    "prettier-eslint": "16.3.0",
    "readline": "1.3.0",
    "semver": "7.7.1",
    "terser-webpack-plugin": "5.3.14",
    "ts-jest": "29.2.6",
    "ts-loader": "9.5.2",
    "ts-node": "10.9.2",
    "typescript": "5.8.2",
    "husky": "8.0.0",
    "webpack": "5.98.0",
    "webpack-cli": "6.0.1"
  }
}