{
  "name": "@x0k/json-schema-merge",
  "version": "1.0.3",
  "description": "A minimal JSON Schema merging library.",
  "type": "module",
  "license": "MIT",
  "homepage": "https://github.com/x0k/json-schema-merge#readme",
  "bugs": {
    "url": "https://github.com/x0k/json-schema-merge/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/x0k/json-schema-merge.git"
  },
  "author": "Roman Krasilnikov",
  "files": [
    "dist"
  ],
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./lib/*": {
      "types": "./dist/lib/*.d.ts",
      "default": "./dist/lib/*.js"
    },
    "./package.json": "./package.json"
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@changesets/changelog-github": "^0.6.0",
    "@changesets/cli": "^2.30.0",
    "@types/json-schema-compare": "^0.2.4",
    "@types/json-schema-merge-allof": "^0.6.5",
    "ajv": "^8.18.0",
    "allof-merge": "^0.6.8",
    "json-schema-compare": "^0.2.2",
    "json-schema-merge-allof": "^0.8.1",
    "prettier": "^3.8.1",
    "publint": "^0.3.18",
    "typescript": "^6.0.2",
    "vitest": "^4.1.2"
  },
  "dependencies": {
    "@types/json-schema": "^7.0.15"
  },
  "scripts": {
    "build": "tsc && publint",
    "test": "vitest run --exclude '.direnv/**'",
    "bench": "vitest bench --exclude '.direnv/**'",
    "typecheck": "tsc --noEmit",
    "format": "prettier --write .",
    "lint": "prettier --check .",
    "check": "npm run lint && npm run typecheck && npm run test",
    "ci:build": "npm run check && npm run build",
    "ci:version": "changeset version && pnpm install --no-frozen-lockfile"
  }
}