{
  "name": "object-property-extractor",
  "version": "1.0.14",
  "description": "A lightweight (no dependencies) tool to extract deeply nested values from JS Objects (or Arrays), with optional Fallback.",
  "main": "build/index.cjs.js",
  "module": "build/index.esm.js",
  "types": "build/index.d.ts",
  "exports": {
    ".": {
      "types": "./build/index.d.ts",
      "import": "./build/index.esm.js",
      "require": "./build/index.cjs.js",
      "default": "./build/index.esm.js"
    }
  },
  "files": [
    "build/**/*"
  ],
  "repository": "https://github.com/CarlosNZ/object-property-extractor.git",
  "author": "Carl Smith <5456533+CarlosNZ@users.noreply.github.com>",
  "license": "MIT",
  "private": false,
  "scripts": {
    "test": "jest",
    "dev": "ts-node ./src/dev/dev.ts",
    "build": "rimraf ./build && rollup -c && rimraf ./build/dts",
    "compile": "rimraf ./build && tsc",
    "prepublish": "yarn build"
  },
  "devDependencies": {
    "@rollup/plugin-typescript": "^11.1.6",
    "@types/jest": "^29.5.12",
    "@types/node": "^20.11.16",
    "jest": "^29.7.0",
    "rimraf": "^5.0.5",
    "rollup": "^4.57.1",
    "rollup-plugin-dts": "^6.1.0",
    "rollup-plugin-sizes": "^1.0.6",
    "rollup-plugin-terser": "^7.0.2",
    "ts-jest": "^29.1.2",
    "ts-node": "^10.9.2",
    "tslib": "^2.6.2",
    "typescript": "^5.3.3"
  }
}
