{
  "name": "remove-undefined-objects",
  "version": "9.0.0",
  "description": "Remove undefined properties and empty arrays from an object",
  "bugs": {
    "url": "https://github.com/readmeio/remove-undefined-objects/issues"
  },
  "license": "MIT",
  "author": "Jon Ursenbach <jon@ursenba.ch>",
  "repository": {
    "type": "git",
    "url": "git://github.com/readmeio/remove-undefined-objects.git"
  },
  "type": "module",
  "sideEffects": false,
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "scripts": {
    "build": "tsdown",
    "format": "npx oxlint --fix && npx oxfmt --write",
    "lint": "tsc --noEmit && npx oxlint && npx oxfmt --check .",
    "prebuild": "rm -rf dist/",
    "prepack": "npm run build",
    "pretest": "npm run lint",
    "test": "vitest run --coverage"
  },
  "devDependencies": {
    "@readme/oxlint-config": "^1.4.0",
    "@vitest/coverage-v8": "^4.1.7",
    "oxfmt": "^0.52.0",
    "oxlint": "^1.67.0",
    "tsdown": "^0.22.0",
    "typescript": "^6.0.2",
    "vitest": "^4.1.7"
  },
  "engines": {
    "node": ">=22"
  }
}
