{
  "name": "deep6",
  "version": "1.4.0",
  "description": "Zero-dependency ESM library for deep equality, deep clone, unification, and pattern matching with logical variables and wildcards. Handles circular references, Map, Set, URL, typed arrays, Date, RegExp, symbols, and property descriptors. Works in Node.js, Deno, Bun, and browsers.",
  "type": "module",
  "main": "src/index.js",
  "types": "src/index.d.ts",
  "exports": {
    ".": "./src/index.js",
    "./*": "./src/*"
  },
  "scripts": {
    "start": "node tests/server.js --trace",
    "test": "node tests/tests.js",
    "test:bun": "bun run tests/tests.js",
    "test:deno": "deno run --allow-read tests/tests.js",
    "debug": "node --inspect-brk tests/tests.js",
    "ts-check": "tsc --noEmit",
    "lint": "prettier --check .",
    "lint:fix": "prettier --write .",
    "bench": "nano-bench",
    "bench:watch": "nano-watch"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/uhop/deep6.git"
  },
  "keywords": [
    "deep-equal",
    "deep-equality",
    "deep-clone",
    "deep-copy",
    "structured-clone",
    "unification",
    "pattern-matching",
    "wildcard",
    "logical-variables",
    "circular-references",
    "traverse",
    "walk",
    "isomorphic",
    "zero-dependencies",
    "esm",
    "typescript",
    "map",
    "set",
    "typed-arrays",
    "symbols"
  ],
  "author": "Eugene Lazutkin <eugene.lazutkin@gmail.com> (https://www.lazutkin.com/)",
  "funding": "https://github.com/sponsors/uhop",
  "license": "BSD-3-Clause",
  "bugs": {
    "url": "https://github.com/uhop/deep6/issues"
  },
  "homepage": "https://github.com/uhop/deep6#readme",
  "files": [
    "src",
    "skills",
    "llms.txt",
    "llms-full.txt"
  ],
  "devDependencies": {
    "nano-benchmark": "^1.2.0",
    "prettier": "^3.9.5",
    "typescript": "^7.0.2"
  }
}
