@hey-api/json-schema-ref-parser
Version:
Parse, Resolve, and Dereference JSON Schema $ref pointers
63 lines • 1.43 kB
JSON
{
"name": "@hey-api/json-schema-ref-parser",
"version": "1.3.1",
"description": "Parse, Resolve, and Dereference JSON Schema $ref pointers",
"keywords": [
"$ref",
"dereference",
"json",
"json-pointer",
"json-schema",
"jsonschema",
"resolve",
"schema"
],
"homepage": "https://heyapi.dev/",
"bugs": {
"url": "https://github.com/hey-api/openapi-ts/issues"
},
"license": "MIT",
"author": {
"name": "Hey API",
"email": "lubos@heyapi.dev",
"url": "https://heyapi.dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hey-api/openapi-ts.git"
},
"funding": "https://github.com/sponsors/hey-api",
"files": [
"src",
"dist",
"cjs"
],
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"dependencies": {
"@jsdevtools/ono": "7.1.3",
"@types/json-schema": "7.0.15",
"js-yaml": "4.1.1"
},
"devDependencies": {
"@types/js-yaml": "4.0.9",
"typescript": "5.9.3"
},
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"build": "tsdown && pnpm check-exports",
"check-exports": "attw --pack . --profile esm-only --ignore-rules cjs-resolves-to-esm",
"dev": "tsdown --watch",
"typecheck": "tsc --noEmit"
}
}