{
  "name": "@scalar/openapi-parser",
  "description": "modern OpenAPI parser written in TypeScript",
  "license": "MIT",
  "author": "Scalar (https://github.com/scalar)",
  "homepage": "https://github.com/scalar/scalar",
  "bugs": "https://github.com/scalar/scalar/issues/new/choose",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/scalar/scalar.git",
    "directory": "packages/openapi-parser"
  },
  "keywords": [
    "openapi",
    "scalar",
    "swagger",
    "parser",
    "typescript"
  ],
  "version": "0.25.9",
  "engines": {
    "node": ">=22"
  },
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./plugins/fetch-urls": {
      "import": "./dist/plugins/fetch-urls/index.js",
      "types": "./dist/plugins/fetch-urls/index.d.ts",
      "default": "./dist/plugins/fetch-urls/index.js"
    },
    "./plugins/read-files": {
      "import": "./dist/plugins/read-files/index.js",
      "types": "./dist/plugins/read-files/index.d.ts",
      "default": "./dist/plugins/read-files/index.js"
    }
  },
  "files": [
    "dist",
    "CHANGELOG.md"
  ],
  "sideEffects": false,
  "dependencies": {
    "ajv": "^8.17.1",
    "ajv-draft-04": "^1.0.0",
    "ajv-formats": "^3.0.1",
    "jsonpointer": "^5.0.1",
    "leven": "^4.0.0",
    "yaml": "^2.8.0",
    "@scalar/helpers": "0.5.0",
    "@scalar/openapi-types": "0.7.0",
    "@scalar/json-magic": "0.12.6",
    "@scalar/openapi-upgrader": "0.2.5"
  },
  "devDependencies": {
    "@apidevtools/swagger-parser": "10.1.0",
    "@types/node": "^24.1.0",
    "just-diff": "^6.0.2",
    "vite": "8.0.0",
    "@scalar/types": "0.9.0"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
    "test": "NODE_OPTIONS=--max_old_space_size=8192 vitest --run",
    "types:check": "tsc --noEmit"
  }
}