fork of hey-api/openapi-ts because I need some additional things
at feat/skip-token 64 lines 1.5 kB view raw
1{ 2 "name": "@hey-api/json-schema-ref-parser", 3 "version": "1.3.0", 4 "description": "Parse, Resolve, and Dereference JSON Schema $ref pointers", 5 "keywords": [ 6 "$ref", 7 "dereference", 8 "json", 9 "json-pointer", 10 "json-schema", 11 "jsonschema", 12 "resolve", 13 "schema" 14 ], 15 "homepage": "https://heyapi.dev/", 16 "bugs": { 17 "url": "https://github.com/hey-api/openapi-ts/issues" 18 }, 19 "license": "MIT", 20 "author": { 21 "name": "Hey API", 22 "email": "lubos@heyapi.dev", 23 "url": "https://heyapi.dev" 24 }, 25 "repository": { 26 "type": "git", 27 "url": "git+https://github.com/hey-api/openapi-ts.git" 28 }, 29 "funding": "https://github.com/sponsors/hey-api", 30 "files": [ 31 "src", 32 "dist", 33 "cjs" 34 ], 35 "type": "module", 36 "main": "./dist/index.mjs", 37 "types": "./dist/index.d.mts", 38 "exports": { 39 ".": { 40 "types": "./dist/index.d.mts", 41 "import": "./dist/index.mjs" 42 }, 43 "./package.json": "./package.json" 44 }, 45 "scripts": { 46 "build": "tsdown && pnpm check-exports", 47 "check-exports": "attw --pack . --profile esm-only --ignore-rules cjs-resolves-to-esm", 48 "dev": "tsdown --watch", 49 "prepublishOnly": "pnpm build", 50 "typecheck": "tsc --noEmit" 51 }, 52 "dependencies": { 53 "@jsdevtools/ono": "7.1.3", 54 "@types/json-schema": "7.0.15", 55 "js-yaml": "4.1.1" 56 }, 57 "devDependencies": { 58 "@types/js-yaml": "4.0.9", 59 "typescript": "5.9.3" 60 }, 61 "engines": { 62 "node": ">=20.19.0" 63 } 64}