-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@hey-api/openapi-python",
"version": "0.0.23",
"description": "🐍 OpenAPI to Python code generator. Production-grade SDKs and Pydantic models.",
"keywords": [
"api-client",
"code-generation",
"codegen",
"fastapi",
"generator",
"http",
"httpx",
"javascript",
"json",
"node",
"openapi",
"pydantic",
"python",
"rest",
"sdk",
"swagger",
"typescript",
"yaml"
],
"homepage": "https://heyapi.dev/docs/openapi/python/get-started",
"bugs": {
"url": "https://github.com/hey-api/hey-api/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/hey-api.git",
"directory": "packages/openapi-python"
},
"funding": "https://github.com/sponsors/hey-api",
"bin": {
"openapi-python": "./bin/run.js"
},
"files": [
"bin",
"dist",
"LICENSE.md",
"README.md"
],
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./plugins": {
"types": "./dist/plugins.d.mts",
"import": "./dist/plugins.mjs"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"prepublishOnly": "pnpm build",
"typecheck": "tsgo --noEmit",
"typecheck:next": "tsc --noEmit && uv run mypy src/py-compiler/__snapshots__"
},
"dependencies": {
"@hey-api/codegen-core": "workspace:*",
"@hey-api/json-schema-ref-parser": "workspace:*",
"@hey-api/shared": "workspace:*",
"@hey-api/spec-types": "workspace:*",
"@hey-api/types": "workspace:*",
"@lukeed/ms": "2.0.2",
"ansi-colors": "4.1.3",
"color-support": "1.1.3",
"commander": "15.0.0"
},
"devDependencies": {
"eslint": "9.39.4",
"typescript": "6.0.3"
},
"engines": {
"node": ">=22.18.0"
}
}