{
  "name": "feathers-utils",
  "version": "10.3.0",
  "description": "Useful hooks and utils for use with feathers services.",
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "type": "module",
  "sideEffects": false,
  "engines": {
    "node": ">=22.0.0"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "import": "./dist/index.mjs"
    },
    "./hooks": {
      "types": "./dist/hooks.d.mts",
      "import": "./dist/hooks.mjs"
    },
    "./predicates": {
      "types": "./dist/predicates.d.mts",
      "import": "./dist/predicates.mjs"
    },
    "./resolvers": {
      "types": "./dist/resolvers.d.mts",
      "import": "./dist/resolvers.mjs"
    },
    "./transformers": {
      "types": "./dist/transformers.d.mts",
      "import": "./dist/transformers.mjs"
    },
    "./utils": {
      "types": "./dist/utils.d.mts",
      "import": "./dist/utils.mjs"
    },
    "./guards": {
      "types": "./dist/guards.d.mts",
      "import": "./dist/guards.mjs"
    }
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/feathersjs/feathers-utils.git"
  },
  "keywords": [
    "feathers",
    "feathersjs",
    "hook",
    "hooks",
    "service",
    "filters",
    "permission"
  ],
  "author": {
    "name": "Feathers contributors",
    "email": "hello@feathersjs.com",
    "url": "https://feathersjs.com"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/feathersjs/feathers-utils/issues"
  },
  "homepage": "https://utils.feathersjs.com/",
  "files": [
    "CHANGELOG.md",
    "LICENSE",
    "README.md",
    "src/**",
    "dist/**",
    "!src/**/*.md",
    "!src/**/*.test.ts",
    "!src/**/*.test-d.ts"
  ],
  "dependencies": {
    "@feathersjs/adapter-commons": "^5.0.45",
    "@feathersjs/errors": "^5.0.45",
    "dequal": "^2.0.3",
    "fast-copy": "^4.0.3",
    "lodash": "^4.18.1",
    "neotraverse": "^0.6.18"
  },
  "devDependencies": {
    "@feathers-community/eslint-config": "^0.1.0",
    "@feathersjs/authentication": "^5.0.45",
    "@feathersjs/authentication-local": "^5.0.45",
    "@feathersjs/client": "^5.0.45",
    "@feathersjs/express": "^5.0.45",
    "@feathersjs/memory": "^5.0.45",
    "@feathersjs/socketio": "^5.0.45",
    "@feathersjs/socketio-client": "^5.0.45",
    "@isaacs/ttlcache": "^2.1.5",
    "@shikijs/vitepress-twoslash": "^4.2.0",
    "@tailwindcss/vite": "^4.3.0",
    "@tsconfig/node24": "^24.0.4",
    "@types/lodash": "^4.17.24",
    "@types/markdown-it": "^14.1.2",
    "@types/node": "^25.9.2",
    "@vitest/coverage-v8": "^4.1.8",
    "dedent": "^1.7.2",
    "eslint": "^10.4.1",
    "gray-matter": "^4.0.3",
    "lru-cache": "^11.5.1",
    "markdown-it": "^14.2.0",
    "npm-check-updates": "^22.2.3",
    "prettier": "^3.8.3",
    "rate-limiter-flexible": "^11.2.0",
    "sass": "^1.100.0",
    "shx": "^0.4.0",
    "sift": "^17.1.3",
    "tailwindcss": "^4.3.0",
    "tinyglobby": "^0.2.17",
    "tsdown": "^0.22.2",
    "typescript": "^5.9.3",
    "unrun": "^0.3.1",
    "vitepress": "^2.0.0-alpha.17",
    "vitest": "^4.1.8"
  },
  "peerDependencies": {
    "@feathersjs/feathers": "^5.0.0",
    "rate-limiter-flexible": ">=10.0.0"
  },
  "peerDependenciesMeta": {
    "rate-limiter-flexible": {
      "optional": true
    }
  },
  "scripts": {
    "build": "tsdown",
    "docs:dev": "vitepress dev docs --port 5177",
    "docs:build": "vitepress build docs",
    "docs:preview": "vitepress preview docs --port 4177",
    "version": "pnpm build",
    "lint": "eslint .",
    "typecheck": "tsc --noEmit",
    "update-dependencies": "ncu -u",
    "test:unit": "vitest run",
    "coverage": "vitest run --coverage",
    "test": "npm run lint && npm run typecheck && npm run coverage",
    "vitest": "vitest"
  }
}