{
  "name": "@prisma-next/migration-tools",
  "version": "0.14.0",
  "license": "Apache-2.0",
  "type": "module",
  "sideEffects": false,
  "description": "On-disk migration persistence, hash verification, and chain reconstruction for Prisma Next",
  "dependencies": {
    "@prisma-next/contract": "0.14.0",
    "@prisma-next/framework-components": "0.14.0",
    "@prisma-next/utils": "0.14.0",
    "arktype": "^2.2.0",
    "pathe": "^2.0.3",
    "prettier": "^3.8.3"
  },
  "devDependencies": {
    "@prisma-next/test-utils": "0.14.0",
    "@prisma-next/tsconfig": "0.14.0",
    "@prisma-next/tsdown": "0.14.0",
    "tsdown": "0.22.1",
    "typescript": "5.9.3",
    "vitest": "4.1.8"
  },
  "peerDependencies": {
    "typescript": ">=5.9"
  },
  "peerDependenciesMeta": {
    "typescript": {
      "optional": true
    }
  },
  "files": [
    "dist",
    "src"
  ],
  "exports": {
    "./metadata": {
      "types": "./dist/exports/metadata.d.mts",
      "import": "./dist/exports/metadata.mjs"
    },
    "./package": {
      "types": "./dist/exports/package.d.mts",
      "import": "./dist/exports/package.mjs"
    },
    "./graph": {
      "types": "./dist/exports/graph.d.mts",
      "import": "./dist/exports/graph.mjs"
    },
    "./errors": {
      "types": "./dist/exports/errors.d.mts",
      "import": "./dist/exports/errors.mjs"
    },
    "./io": {
      "types": "./dist/exports/io.d.mts",
      "import": "./dist/exports/io.mjs"
    },
    "./hash": {
      "types": "./dist/exports/hash.d.mts",
      "import": "./dist/exports/hash.mjs"
    },
    "./invariants": {
      "types": "./dist/exports/invariants.d.mts",
      "import": "./dist/exports/invariants.mjs"
    },
    "./migration-graph": {
      "types": "./dist/exports/migration-graph.d.mts",
      "import": "./dist/exports/migration-graph.mjs"
    },
    "./refs": {
      "types": "./dist/exports/refs.d.mts",
      "import": "./dist/exports/refs.mjs"
    },
    "./ref-resolution": {
      "types": "./dist/exports/ref-resolution.d.mts",
      "import": "./dist/exports/ref-resolution.mjs"
    },
    "./constants": {
      "types": "./dist/exports/constants.d.mts",
      "import": "./dist/exports/constants.mjs"
    },
    "./ledger-origin": {
      "types": "./dist/exports/ledger-origin.d.mts",
      "import": "./dist/exports/ledger-origin.mjs"
    },
    "./migration-ts": {
      "types": "./dist/exports/migration-ts.d.mts",
      "import": "./dist/exports/migration-ts.mjs"
    },
    "./migration": {
      "types": "./dist/exports/migration.d.mts",
      "import": "./dist/exports/migration.mjs"
    },
    "./spaces": {
      "types": "./dist/exports/spaces.d.mts",
      "import": "./dist/exports/spaces.mjs"
    },
    "./aggregate": {
      "types": "./dist/exports/aggregate.d.mts",
      "import": "./dist/exports/aggregate.mjs"
    },
    "./package.json": "./package.json"
  },
  "engines": {
    "node": ">=24"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/prisma/prisma-next.git",
    "directory": "packages/1-framework/3-tooling/migration"
  },
  "scripts": {
    "build": "tsdown",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc --project tsconfig.json --noEmit",
    "lint": "biome check . --error-on-warnings",
    "lint:fix": "biome check --write .",
    "lint:fix:unsafe": "biome check --write --unsafe .",
    "clean": "rm -rf dist dist-tsc dist-tsc-prod coverage .tmp-output"
  }
}