{
  "name": "@hyperjump/json-schema",
  "version": "1.5.0",
  "description": "A JSON Schema validator with support for custom keywords, vocabularies, and dialects",
  "type": "module",
  "main": "./stable/index.js",
  "exports": {
    ".": "./stable/index.js",
    "./draft-04": "./draft-04/index.js",
    "./draft-06": "./draft-06/index.js",
    "./draft-07": "./draft-07/index.js",
    "./draft-2019-09": "./draft-2019-09/index.js",
    "./draft-2020-12": "./draft-2020-12/index.js",
    "./openapi-3-0": "./openapi-3-0/index.js",
    "./openapi-3-1": "./openapi-3-1/index.js",
    "./experimental": "./lib/experimental.js",
    "./schema/experimental": "./lib/schema.js",
    "./instance/experimental": "./lib/instance.js",
    "./annotations/experimental": "./annotations/index.js",
    "./annotated-instance/experimental": "./annotations/annotated-instance.js",
    "./bundle": "./bundle/index.js"
  },
  "browser": {
    "./lib/fetch.js": "./lib/fetch.browser.js"
  },
  "scripts": {
    "clean": "xargs -a .gitignore rm -rf",
    "lint": "eslint lib stable draft-* openapi-*",
    "test": "mocha 'lib/**/*.spec.ts' 'stable/**/*.spec.ts' 'draft-*/**/*.spec.ts' 'openapi-*/**/*.spec.ts' 'bundle/**/*.spec.ts' 'annotations/**/*.spec.ts'"
  },
  "repository": "github:hyperjump-io/json-schema",
  "keywords": [
    "JSON Schema",
    "JSON",
    "Schema",
    "2020-12",
    "2019-09",
    "draft-06",
    "draft-04",
    "vocabulary",
    "vocabularies"
  ],
  "author": "Jason Desrosiers <jdesrosi@gmail.com>",
  "license": "MIT",
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/jdesrosiers"
  },
  "devDependencies": {
    "@types/chai": "*",
    "@types/mocha": "*",
    "@typescript-eslint/eslint-plugin": "*",
    "@typescript-eslint/parser": "*",
    "chai": "*",
    "eslint": "*",
    "eslint-import-resolver-node": "*",
    "eslint-import-resolver-typescript": "*",
    "eslint-plugin-import": "*",
    "json-schema-test-suite": "github:json-schema-org/JSON-Schema-Test-Suite",
    "mocha": "*",
    "ts-node": "*",
    "typescript": "*",
    "yaml": "*"
  },
  "dependencies": {
    "@hyperjump/json-pointer": "^1.0.0",
    "@hyperjump/pact": "^1.0.0",
    "@hyperjump/uri": "^1.2.0",
    "content-type": "^1.0.4",
    "fastest-stable-stringify": "^2.0.2",
    "just-curry-it": "^5.3.0",
    "undici": "^5.19.1",
    "uuid": "^9.0.0"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
