{
  "name": "@sanity/migrate",
  "version": "6.1.2",
  "description": "Tooling for running data migrations on Sanity.io projects",
  "keywords": [
    "cms",
    "content",
    "headless",
    "migrate",
    "migration",
    "realtime",
    "sanity"
  ],
  "homepage": "https://www.sanity.io/",
  "bugs": {
    "url": "https://github.com/sanity-io/migrate/issues"
  },
  "license": "MIT",
  "author": "Sanity.io <hello@sanity.io>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sanity-io/migrate.git"
  },
  "files": [
    "dist",
    "oclif.manifest.json",
    "src",
    "!src/**/__tests__/**",
    "!src/**/*.test.ts",
    "!src/**/*.tar",
    "!src/**/*.tar.gz"
  ],
  "type": "module",
  "sideEffects": false,
  "main": "./dist/_exports/index.js",
  "types": "./dist/_exports/index.d.ts",
  "exports": {
    ".": {
      "source": "./src/_exports/index.ts",
      "default": "./dist/_exports/index.js"
    },
    "./package.json": "./package.json"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@sanity/client": "^7.22.0",
    "@sanity/mutate": "^0.16.1",
    "@sanity/types": "^5.23.0",
    "@sanity/util": "^5.23.0",
    "arrify": "^2.0.1",
    "console-table-printer": "^2.15.0",
    "debug": "^4.4.3",
    "fast-fifo": "^1.3.2",
    "groq-js": "^1.30.1",
    "p-map": "^7.0.1"
  },
  "devDependencies": {
    "@eslint/compat": "^2.0.5",
    "@sanity/cli-core": "^1.3.1",
    "@sanity/cli-test": "^0.3.1",
    "@sanity/eslint-config-cli": "^1.1.0",
    "@sanity/pkg-utils": "^10.4.18",
    "@swc/cli": "^0.8.1",
    "@swc/core": "^1.15.32",
    "@types/debug": "^4.1.13",
    "@types/node": "^25.6.0",
    "@vitest/coverage-v8": "^4.1.5",
    "chokidar": "^5.0.0",
    "eslint": "10.2.1",
    "knip": "^5.88.1",
    "oclif": "^4.23.0",
    "oxfmt": "^0.47.0",
    "rimraf": "^6.1.2",
    "typescript": "^5.9.3",
    "vitest": "^4.1.5"
  },
  "peerDependencies": {
    "@oclif/core": "^4.10.5",
    "@sanity/cli-core": "^1"
  },
  "oclif": {
    "bin": "sanity",
    "commands": "./dist/commands",
    "dirname": "sanity",
    "topicSeparator": " "
  },
  "engines": {
    "node": ">=20.19 <22 || >=22.12"
  },
  "scripts": {
    "build": "swc --delete-dir-on-start src -d dist --strip-leading-paths && pnpm run build:types",
    "postbuild": "oclif manifest",
    "build:types": "pkg-utils build --emitDeclarationOnly",
    "clean": "rimraf dist node_modules",
    "coverage": "vitest run --coverage",
    "depcheck": "knip",
    "dev": "tsc --watch",
    "check:format": "oxfmt --check",
    "format": "oxfmt",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "test": "vitest run",
    "typecheck": "tsc --noEmit",
    "watch": "swc src -d dist --strip-leading-paths --watch"
  }
}