{
  "name": "tree-changes",
  "version": "0.11.3",
  "description": "Get changes between two versions of data with similar shape",
  "author": "Gil Barbara <gilbarbara@gmail.com>",
  "keywords": [
    "comparison",
    "tree"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gilbarbara/tree-changes.git"
  },
  "bugs": {
    "url": "https://github.com/gilbarbara/tree-changes/issues"
  },
  "homepage": "https://github.com/gilbarbara/tree-changes/tree/main/packages/tree-changes#readme",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "src"
  ],
  "types": "dist/index.d.ts",
  "sideEffects": false,
  "dependencies": {
    "@gilbarbara/deep-equal": "^0.3.1",
    "is-lite": "^1.2.1"
  },
  "devDependencies": {
    "@gilbarbara/node-helpers": "^0.1.0",
    "vitest": "^2.1.8"
  },
  "scripts": {
    "build": "npm run clean && tsup && ts-node scripts/fix-cjs.ts",
    "watch": "tsup --watch",
    "clean": "del dist/*",
    "lint": "eslint src test",
    "test": "is-ci \"test:coverage\" \"test:watch\"",
    "test:coverage": "vitest run --coverage",
    "test:watch": "vitest watch",
    "typecheck": "tsc --noEmit",
    "format": "prettier \"**/*.{js,jsx,json,yml,yaml,css,less,scss,ts,tsx,md,graphql,mdx}\" --write",
    "validate": "npm run lint && npm run typecheck && npm run test:coverage && npm run build && npm run size",
    "size": "size-limit",
    "prepublishOnly": "npm run validate"
  },
  "tsup": {
    "cjsInterop": true,
    "dts": true,
    "entry": [
      "src/index.ts"
    ],
    "format": [
      "cjs",
      "esm"
    ],
    "sourcemap": true,
    "splitting": false
  },
  "eslintConfig": {
    "extends": [
      "@gilbarbara/eslint-config/base",
      "@gilbarbara/eslint-config/vitest"
    ]
  },
  "prettier": "@gilbarbara/prettier-config",
  "size-limit": [
    {
      "name": "cjs",
      "path": "./dist/index.js",
      "limit": "4 kB"
    },
    {
      "name": "esm",
      "path": "./dist/index.mjs",
      "limit": "3 kB"
    }
  ],
  "gitHead": "eeb17be158bc6038cbe605a8e7d6f9973c789481"
}
