{
  "name": "@sanity/diff-patch",
  "version": "7.0.0",
  "description": "Generates a set of Sanity patches needed to change an item (usually a document) from one shape to another",
  "keywords": [
    "compare",
    "diff",
    "mutation",
    "patch",
    "sanity"
  ],
  "license": "MIT",
  "author": "Sanity.io <hello@sanity.io>",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/sanity-io/diff-patch.git"
  },
  "files": [
    "dist",
    "!dist/analyze-data.md",
    "src"
  ],
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": "./dist/index.js",
    "./package.json": "./package.json"
  },
  "publishConfig": {
    "provenance": true
  },
  "dependencies": {
    "@sanity/diff-match-patch": "^3.2.1"
  },
  "devDependencies": {
    "@changesets/changelog-github": "^1.0.1",
    "@changesets/cli": "^3.0.3",
    "@rexxars/bundle-stats": "^2.0.0",
    "@sanity/client": "^8.6.2",
    "@sanity/pkg-utils": "^13.0.2",
    "@types/node": "^22.20.4",
    "@vitest/coverage-v8": "^5.0.1",
    "knip": "^6.37.0",
    "oxfmt": "^0.70.0",
    "oxlint": "^1.85.0",
    "p-queue": "^9.3.3",
    "rimraf": "^6.1.3",
    "typescript": "^7.0.2",
    "vite": "^8.3.0",
    "vitest": "^5.0.1"
  },
  "browserslist": "extends @sanity/browserslist-config",
  "engines": {
    "node": ">=22.12.0"
  },
  "scripts": {
    "check": "knip",
    "clean": "rimraf dist coverage",
    "coverage": "vitest run --coverage",
    "build": "pkg-utils build && pkg-utils check --strict",
    "format": "oxfmt --write .",
    "format:check": "oxfmt --check .",
    "lint": "oxlint --deny-warnings . && tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "changeset": "changeset",
    "version-packages": "changeset version && pnpm install --lockfile-only && oxfmt --write package.json",
    "release": "changeset publish"
  }
}