-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.03 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
{
"name": "hono-openapi-scan",
"version": "1.2.1",
"description": "Zero-config OpenAPI 3.1 spec generator for Hono. Scans your codebase — no wrappers, no runtime cost.",
"type": "module",
"license": "MIT",
"author": "Raman Karki",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"bin": {
"hono-openapi-scan": "./dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"bun": ">=1.1.0"
},
"keywords": [
"hono",
"openapi",
"openapi-spec",
"api-docs",
"static-analysis",
"code-scanner",
"zod",
"drizzle",
"better-auth",
"typescript",
"cli",
"api"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ramankarki/hono-openapi-scan.git"
},
"bugs": {
"url": "https://github.com/ramankarki/hono-openapi-scan/issues"
},
"homepage": "https://github.com/ramankarki/hono-openapi-scan#readme",
"scripts": {
"build": "bun build src/cli.ts --outdir dist --target bun --entry-naming [name].js && bun build src/index.ts --outdir dist --target node --external ts-morph --external zod --external zod-to-json-schema --external commander --external openapi-types --entry-naming [name].js && tsc -p tsconfig.build.json",
"dev": "bun run src/cli.ts",
"typecheck": "tsc --noEmit",
"test": "bun test",
"format": "prettier --write .",
"prepublishOnly": "bun run build && bun test && bun run typecheck",
"prepare": "bun .husky/install.mjs",
"publish:dry": "npm pack --dry-run"
},
"dependencies": {
"commander": "^15.0.0",
"openapi-types": "^12.1.3",
"ts-morph": "^28.0.0",
"zod": "^4.4.3",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@types/bun": "latest",
"husky": "^9.1.7"
},
"peerDependencies": {
"typescript": "^5"
}
}