Installing the latest:
hono-openapi@1.3.0
@hono/standard-validator@0.2.2
But I get this error:
Module not found: Can't resolve '@standard-community/standard-openapi'
2 | import { sValidator } from '@hono/standard-validator';
3 | import { loadVendor as loadVendor$1, toJsonSchema } from '@standard-community/standard-json';
> 4 | import { loadVendor as loadVendor$2, toOpenAPISchema } from '@standard-community/standard-o...
| ^
5 |
6 | const uniqueSymbol = Symbol("openapi");
7 | const ALLOWED_METHODS = [
So I manually installed the 2 missing packages:
@standard-community/standard-json@0.3.5
@standard-community/standard-openapi@0.2.9
Now it fails with:
Module not found: Can't resolve 'quansync'
> 1 | import { quansync } from 'quansync';
| ^
2 |
3 | const validationMapper = /* @__PURE__ */ new Map();
4 | class UnsupportedVendorError extends Error {
After installing that, it works
Installing the latest:
But I get this error:
So I manually installed the 2 missing packages:
Now it fails with:
After installing that, it works