-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 2.83 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@hey-api/openapi-ts",
"version": "0.99.0",
"description": "🌀 OpenAPI to TypeScript code generator. Production-grade SDKs, Zod schemas, TanStack Query hooks, and 20+ plugins. Used by Vercel, OpenCode, and PayPal.",
"keywords": [
"angular",
"api-client",
"arktype",
"axios",
"code-generation",
"codegen",
"faker",
"fakerjs",
"fastify",
"fetch",
"generator",
"http",
"javascript",
"json",
"ky",
"nest.js",
"next",
"next.js",
"node",
"nuxt",
"ofetch",
"openapi",
"orpc",
"pinia",
"rest",
"sdk",
"swagger",
"swr",
"typescript",
"valibot",
"xhr",
"yaml",
"zod"
],
"homepage": "https://heyapi.dev/docs/openapi/typescript/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-ts"
},
"funding": "https://github.com/sponsors/hey-api",
"bin": {
"openapi-ts": "./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"
},
"./internal": {
"types": "./dist/internal.d.mts",
"import": "./dist/internal.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"
},
"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",
"get-tsconfig": "4.14.0"
},
"devDependencies": {
"@angular/common": "21.2.17",
"@angular/compiler": "21.2.17",
"@angular/compiler-cli": "21.2.17",
"@angular/core": "21.2.17",
"@angular/platform-browser": "21.2.17",
"@angular/platform-browser-dynamic": "21.2.17",
"@angular/router": "21.2.17",
"axios": "1.13.4",
"eslint": "9.39.4",
"ky": "1.14.3",
"nuxt": "3.14.1592",
"ofetch": "1.5.1",
"rxjs": "7.8.2",
"typescript": "6.0.3",
"vue": "3.5.25",
"zone.js": "0.16.2"
},
"peerDependencies": {
"typescript": ">=5.5.3 || >=6.0.0 || 6.0.1-rc"
},
"engines": {
"node": ">=22.18.0"
}
}