-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.36 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
{
"name": "@block65/openapi-codegen",
"version": "11.0.0",
"private": false,
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/block65/openapi-codegen"
},
"bin": {
"openapi-codegen": "./bin/index.ts"
},
"files": [
"bin",
"lib"
],
"type": "module",
"sideEffects": false,
"scripts": {
"preversion": "make test"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^16.0.2",
"camelcase": "^9.0.0",
"toposort": "^2.0.2",
"ts-morph": "^28.0.0",
"word-wrap": "^1.2.5",
"yargs": "^18.1.0"
},
"devDependencies": {
"@block65/custom-error": "^14.1.0",
"@block65/rest-client": "^14.0.1",
"@block65/shared-config": "^0.3.1",
"@standard-schema/spec": "^1.1.0",
"@tsconfig/node24": "^24.0.5",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^26.4.0",
"@types/toposort": "^2.0.7",
"@types/yargs": "^17.0.35",
"hono": "^4.13.8",
"js-yaml": "^5.4.2",
"openapi3-ts": "^4.6.1",
"oxfmt": "^0.68.0",
"oxlint": "^1.83.0",
"oxlint-tsgolint": "^7.0.2001",
"type-fest": "^5.9.0",
"typescript": "^7.0.2",
"undici": "^8.10.2",
"valibot": "^1.5.0",
"vite": "^8.3.0",
"vitest": "^5.0.1"
},
"peerDependencies": {
"@block65/rest-client": "^14.0.0",
"@standard-schema/spec": "^1.1.0",
"hono": "^4.12.23",
"type-fest": "^5.9.0",
"valibot": "^1.4.1"
},
"engines": {
"node": ">=26.0.0"
}
}