-
-
Notifications
You must be signed in to change notification settings - Fork 350
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.73 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.73 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
{
"name": "@hey-api/openapi-python",
"version": "0.0.15",
"private": true,
"description": "🐍 OpenAPI to Python codegen.",
"keywords": [
"codegen",
"generator",
"http",
"javascript",
"json",
"node",
"openapi",
"python",
"rest",
"swagger",
"typescript",
"yaml"
],
"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",
"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"
},
"./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:*",
"ansi-colors": "4.1.3",
"color-support": "1.1.3",
"commander": "14.0.3"
},
"devDependencies": {
"eslint": "9.39.2",
"typescript": "6.0.2",
"yaml": "2.8.3"
},
"engines": {
"node": ">=22.13.0"
}
}