fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at feat/use-query-options 62 lines 1.3 kB view raw
1{ 2 "name": "@hey-api/json-schema-ref-parser", 3 "version": "1.3.1", 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", 47 "dev": "tsdown --watch", 48 "prepublishOnly": "pnpm build", 49 "typecheck": "tsgo --noEmit" 50 }, 51 "dependencies": { 52 "@jsdevtools/ono": "7.1.3", 53 "@types/json-schema": "7.0.15", 54 "yaml": "2.8.3" 55 }, 56 "devDependencies": { 57 "typescript": "5.9.3" 58 }, 59 "engines": { 60 "node": ">=22.13.0" 61 } 62}