{
  "name": "@opentf/obj-diff",
  "description": "The Fast, Accurate, JavaScript Objects Diffing & Patching Library.",
  "keywords": [
    "diff",
    "object",
    "fast",
    "accurate",
    "compare",
    "patch",
    "json",
    "track"
  ],
  "version": "0.18.0",
  "author": {
    "name": "Thanga Ganapathy",
    "email": "ganapathy888@gmail.com",
    "url": "https://thanga-ganapathy.github.io"
  },
  "license": "MIT",
  "homepage": "https://obj-diff.opentechf.org/",
  "repository": {
    "type": "git",
    "url": "https://github.com/Open-Tech-Foundation/obj-diff.git"
  },
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "sideEffects": false,
  "engines": {
    "node": ">=16.20.2"
  },
  "scripts": {
    "build": "tsup && cp ../../README.md ./README.md",
    "test": "bun test",
    "test:dist": "TEST_DIST=true bun test",
    "test:cjs": "TEST_CJS=true bun test",
    "lint": "biome check src/",
    "type-check": "tsc --noEmit",
    "ci": "bun run build && bun run test && bun run type-check && bun run lint"
  },
  "files": [
    "dist"
  ],
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "devDependencies": {
    "@biomejs/biome": "^2.4.13",
    "@js-temporal/polyfill": "^0.5.1",
    "bson": "^6.6.0",
    "tsup": "^8.5.1",
    "typescript": "^5.4.5"
  },
  "dependencies": {
    "@opentf/std": "^0.14.1"
  }
}