{
  "name": "@ytrynot/schvalid",
  "version": "0.3.13",
  "description": "JSON Schema 2020-12 validator with compiled standalone JS function using DNA bytecodes. OpenAPI 3.1 discriminator support. Close to AJV's speed.",
  "author": "linqFR",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/linqFR/ytn.git",
    "directory": "packages/schvalid"
  },
  "bugs": {
    "url": "https://github.com/linqFR/ytn/issues"
  },
  "homepage": "https://github.com/linqFR/ytn/tree/main/packages/schvalid#readme",
  "type": "module",
  "sideEffects": false,
  "engines": {
    "node": ">=26.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "dna",
    "json-schema",
    "json-schema-2020-12",
    "validation",
    "validator",
    "schema",
    "ajv",
    "ajv-alternative",
    "openapi",
    "discriminator",
    "dna",
    "typescript",
    "performance"
  ],
  "scripts": {
    "build": "tsup",
    "test": "vitest run tests/schemas",
    "test:full": "vitest run",
    "bench": "npm.cmd run perf",
    "perf": "node --import tsx --expose-gc ./perf/full-comparative-benchmark.ts && node --import tsx --expose-gc ./perf/bundle-performance.ts"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./package.json": "./package.json"
  },
  "dependencies": {
    "@ytrynot/dna": "^0.11.0"
  },
  "devDependencies": {
    "@types/node": "^26.4.0",
    "@ytrynot/shared": "*",
    "ajv": "^8.20.0",
    "tsup": "^8.5.1",
    "zod": "^4.5.4"
  }
}
