-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.48 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.48 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
{
"name": "hono-route-docs",
"version": "1.0.1",
"description": "Lightweight OpenAPI 3.1 spec generator for Hono with a fluent router API. Works with raw JSON Schema, Zod, Valibot, and any Standard Schema library.",
"keywords": [
"hono",
"openapi",
"documentation",
"api",
"swagger",
"scalar",
"rest"
],
"author": "Gabriel Augusto (@biewdev)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/biewdev/hono-route-docs.git"
},
"homepage": "https://github.com/biewdev/hono-route-docs#readme",
"bugs": {
"url": "https://github.com/biewdev/hono-route-docs/issues"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./zod": {
"import": {
"types": "./dist/zod.d.ts",
"default": "./dist/zod.js"
},
"require": {
"types": "./dist/zod.d.cts",
"default": "./dist/zod.cjs"
}
},
"./standard": {
"import": {
"types": "./dist/standard.d.ts",
"default": "./dist/standard.js"
},
"require": {
"types": "./dist/standard.d.cts",
"default": "./dist/standard.cjs"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit",
"prettier": "prettier ./ --check",
"prettier:fix": "prettier ./ --write",
"fix": "bun run prettier:fix && bun outdated"
},
"peerDependencies": {
"hono": ">=4.0.0",
"@hono/zod-openapi": ">=0.9.0",
"zod": ">=3.0.0 || >=4.0.0",
"hono-openapi": ">=1.0.0",
"@hono/standard-validator": ">=0.2.0"
},
"peerDependenciesMeta": {
"@hono/zod-openapi": {
"optional": true
},
"zod": {
"optional": true
},
"hono-openapi": {
"optional": true
},
"@hono/standard-validator": {
"optional": true
}
},
"devDependencies": {
"@hono/standard-validator": "^0.2.2",
"@hono/zod-openapi": "^1.2.2",
"hono": "^4.12.2",
"hono-openapi": "^1.2.0",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"zod": "^4.3.6"
},
"workspaces": [
"tests/app"
]
}