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 79 lines 1.8 kB view raw
1{ 2 "name": "@hey-api/openapi-python", 3 "version": "0.0.14", 4 "private": true, 5 "description": "🐍 OpenAPI to Python codegen.", 6 "keywords": [ 7 "codegen", 8 "generator", 9 "http", 10 "javascript", 11 "json", 12 "node", 13 "openapi", 14 "python", 15 "rest", 16 "swagger", 17 "typescript", 18 "yaml" 19 ], 20 "homepage": "https://heyapi.dev/", 21 "bugs": { 22 "url": "https://github.com/hey-api/openapi-ts/issues" 23 }, 24 "license": "MIT", 25 "author": { 26 "name": "Hey API", 27 "email": "lubos@heyapi.dev", 28 "url": "https://heyapi.dev" 29 }, 30 "repository": { 31 "type": "git", 32 "url": "git+https://github.com/hey-api/openapi-ts.git" 33 }, 34 "funding": "https://github.com/sponsors/hey-api", 35 "bin": { 36 "openapi-python": "./bin/run.js" 37 }, 38 "files": [ 39 "bin", 40 "dist", 41 "LICENSE.md", 42 "README.md" 43 ], 44 "type": "module", 45 "main": "./dist/index.mjs", 46 "types": "./dist/index.d.mts", 47 "exports": { 48 ".": { 49 "types": "./dist/index.d.mts", 50 "import": "./dist/index.mjs" 51 }, 52 "./package.json": "./package.json" 53 }, 54 "scripts": { 55 "build": "tsdown", 56 "dev": "tsdown --watch", 57 "prepublishOnly": "pnpm build", 58 "typecheck": "tsgo --noEmit", 59 "typecheck:next": "tsc --noEmit && uv run mypy src/py-compiler/__snapshots__" 60 }, 61 "dependencies": { 62 "@hey-api/codegen-core": "workspace:*", 63 "@hey-api/json-schema-ref-parser": "workspace:*", 64 "@hey-api/shared": "workspace:*", 65 "@hey-api/spec-types": "workspace:*", 66 "@hey-api/types": "workspace:*", 67 "ansi-colors": "4.1.3", 68 "color-support": "1.1.3", 69 "commander": "14.0.3" 70 }, 71 "devDependencies": { 72 "eslint": "9.39.2", 73 "typescript": "5.9.3", 74 "yaml": "2.8.3" 75 }, 76 "engines": { 77 "node": ">=22.13.0" 78 } 79}