@zuplo/cli 6.73.30 → 6.73.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/test/invoke-test.d.ts.map +1 -1
- package/dist/test/invoke-test.js +4 -3
- package/dist/test/invoke-test.js.map +1 -1
- package/dist/test/invoke-test.test.d.ts +2 -0
- package/dist/test/invoke-test.test.d.ts.map +1 -0
- package/dist/test/invoke-test.test.js +57 -0
- package/dist/test/invoke-test.test.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/node_modules/@posthog/core/dist/posthog-core.d.ts.map +1 -1
- package/node_modules/@posthog/core/dist/posthog-core.js +18 -1
- package/node_modules/@posthog/core/dist/posthog-core.mjs +18 -1
- package/node_modules/@posthog/core/package.json +1 -1
- package/node_modules/@posthog/core/src/posthog-core.ts +28 -1
- package/node_modules/@zuplo/core/package.json +1 -1
- package/node_modules/@zuplo/editor/node_modules/hono/LICENSE +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/README.md +85 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/aws-lambda/conninfo.js +24 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/aws-lambda/handler.js +364 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/aws-lambda/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/aws-lambda/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/conninfo.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/index.js +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/serve-static.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/server.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/ssg.js +17 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/bun/websocket.js +73 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-pages/conninfo.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-pages/handler.js +67 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-pages/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/conninfo.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/serve-static-module.js +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/serve-static.js +22 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/utils.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/cloudflare-workers/websocket.js +41 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/conninfo.js +14 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/deno.d.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/index.js +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/serve-static.js +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/ssg.js +18 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/deno/websocket.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/lambda-edge/conninfo.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/lambda-edge/handler.js +96 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/lambda-edge/index.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/netlify/conninfo.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/netlify/handler.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/netlify/index.js +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/netlify/mod.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/service-worker/handler.js +20 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/service-worker/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/service-worker/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/vercel/conninfo.js +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/vercel/handler.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/adapter/vercel/index.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/aws-lambda/conninfo.js +46 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/aws-lambda/handler.js +395 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/aws-lambda/index.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/aws-lambda/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/conninfo.js +49 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/index.js +45 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/serve-static.js +52 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/server.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/ssg.js +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/bun/websocket.js +98 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-pages/conninfo.js +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-pages/handler.js +91 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-pages/index.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/conninfo.js +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/index.js +33 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/serve-static-module.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/serve-static.js +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/utils.js +57 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/cloudflare-workers/websocket.js +63 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/conninfo.js +36 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/deno.d.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/index.js +38 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/serve-static.js +62 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/ssg.js +41 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/deno/websocket.js +54 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/lambda-edge/conninfo.js +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/lambda-edge/handler.js +130 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/lambda-edge/index.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/netlify/conninfo.js +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/netlify/handler.js +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/netlify/index.js +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/netlify/mod.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/service-worker/handler.js +42 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/service-worker/index.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/service-worker/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/vercel/conninfo.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/vercel/handler.js +29 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/adapter/vercel/index.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/client/client.js +204 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/client/fetch-result-please.js +85 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/client/index.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/client/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/client/utils.js +105 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/compose.js +68 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/context.js +435 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/accepts/accepts.js +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/accepts/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/adapter/index.js +81 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/conninfo/index.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/conninfo/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/cookie/index.js +130 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/css/common.js +273 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/css/index.js +157 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/dev/index.js +79 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/factory/index.js +54 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/html/index.js +64 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/proxy/index.js +111 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/route/index.js +71 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/ssg/index.js +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/ssg/middleware.js +73 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/ssg/plugins.js +70 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/ssg/ssg.js +320 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/ssg/utils.js +93 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/streaming/index.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/streaming/sse.js +91 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/streaming/stream.js +56 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/streaming/text.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/streaming/utils.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/testing/index.js +33 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/helper/websocket/index.js +81 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/hono-base.js +405 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/hono.js +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/http-exception.js +57 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/index.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/base.js +374 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/children.js +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/components.js +221 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/constants.js +42 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/context.js +188 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/client.js +76 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/components.js +55 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/context.js +71 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/css.js +168 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/hooks/index.js +74 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/index.js +181 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/intrinsic-element/components.js +399 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/jsx-dev-runtime.js +52 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/jsx-runtime.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/render.js +641 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/server.js +67 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/dom/utils.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/hooks/index.js +370 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/index.js +138 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/intrinsic-element/common.js +50 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/intrinsic-element/components.js +189 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/intrinsic-elements.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/jsx-dev-runtime.js +41 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/jsx-runtime.js +71 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/streaming.js +179 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/jsx/utils.js +200 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/basic-auth/index.js +88 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/bearer-auth/index.js +114 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/body-limit/index.js +75 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/cache/index.js +124 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/combine/index.js +101 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/compress/index.js +92 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/context-storage/index.js +47 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/cors/index.js +106 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/csrf/index.js +77 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/etag/digest.js +55 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/etag/index.js +96 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/ip-restriction/index.js +176 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/jsx-renderer/index.js +82 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/jwk/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/jwk/jwk.js +134 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/jwt/index.js +38 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/jwt/jwt.js +140 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/language/index.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/language/language.js +199 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/logger/index.js +72 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/method-override/index.js +106 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/powered-by/index.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/pretty-json/index.js +37 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/request-id/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/request-id/request-id.js +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/secure-headers/index.js +29 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/secure-headers/permissions-policy.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/secure-headers/secure-headers.js +195 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/serve-static/index.js +99 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/serve-static/path.js +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/timeout/index.js +47 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/timing/index.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/timing/timing.js +130 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/middleware/trailing-slash/index.js +62 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/package.json +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/preset/quick.js +38 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/preset/tiny.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/request/constants.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/request.js +344 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/linear-router/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/linear-router/router.js +140 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/pattern-router/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/pattern-router/router.js +70 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/index.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/matcher.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/node.js +134 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/prepared-router.js +166 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/router.js +208 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/reg-exp-router/trie.js +81 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/smart-router/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/smart-router/router.js +80 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/trie-router/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/trie-router/node.js +210 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router/trie-router/router.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/router.js +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/types.js +28 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/accept.js +245 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/basic-auth.js +45 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/body.js +111 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/buffer.js +103 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/color.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/compress.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/concurrent.js +61 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/constants.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/cookie.js +198 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/crypto.js +69 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/encode.js +54 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/filepath.js +58 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/handler.js +36 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/headers.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/html.js +150 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/http-status.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/ipaddr.js +318 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/index.js +28 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/jwa.js +42 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/jws.js +215 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/jwt.js +219 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/types.js +161 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/jwt/utf8.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/mime.js +106 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/stream.js +103 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/types.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/utils/url.js +256 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/validator/index.js +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/validator/utils.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/cjs/validator/validator.js +108 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/client/client.js +189 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/client/fetch-result-please.js +62 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/client/index.js +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/client/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/client/utils.js +76 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/compose.js +46 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/context.js +412 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/accepts/accepts.js +20 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/accepts/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/adapter/index.js +56 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/conninfo/index.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/conninfo/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/cookie/index.js +102 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/css/common.js +236 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/css/index.js +140 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/dev/index.js +55 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/factory/index.js +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/html/index.js +41 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/proxy/index.js +89 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/route/index.js +46 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/ssg/index.js +19 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/ssg/middleware.js +45 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/ssg/plugins.js +47 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/ssg/ssg.js +297 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/ssg/utils.js +67 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/streaming/index.js +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/streaming/sse.js +68 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/streaming/stream.js +34 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/streaming/text.js +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/streaming/utils.js +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/testing/index.js +11 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/helper/websocket/index.js +57 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/hono-base.js +383 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/hono.js +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/http-exception.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/index.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/base.js +342 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/children.js +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/components.js +198 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/constants.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/context.js +162 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/client.js +53 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/components.js +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/context.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/css.js +150 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/hooks/index.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/index.js +142 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/intrinsic-element/components.js +374 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/jsx-dev-runtime.js +19 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/jsx-runtime.js +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/render.js +617 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/server.js +33 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/dom/utils.js +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/hooks/index.js +328 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/index.js +103 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/intrinsic-element/common.js +24 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/intrinsic-element/components.js +165 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/intrinsic-elements.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/jsx-dev-runtime.js +18 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/jsx-runtime.js +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/streaming.js +155 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/jsx/utils.js +175 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/basic-auth/index.js +66 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/bearer-auth/index.js +92 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/body-limit/index.js +53 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/cache/index.js +102 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/combine/index.js +77 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/compress/index.js +69 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/context-storage/index.js +23 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/cors/index.js +84 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/csrf/index.js +55 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/etag/digest.js +33 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/etag/index.js +73 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/ip-restriction/index.js +162 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/jsx-renderer/index.js +58 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/jwk/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/jwk/jwk.js +112 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/jwt/index.js +11 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/jwt/jwt.js +114 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/language/index.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/language/language.js +168 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/logger/index.js +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/method-override/index.js +84 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/powered-by/index.js +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/pretty-json/index.js +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/request-id/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/request-id/request-id.js +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/secure-headers/index.js +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/secure-headers/permissions-policy.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/secure-headers/secure-headers.js +172 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/serve-static/index.js +77 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/serve-static/path.js +18 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/timeout/index.js +25 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/timing/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/timing/timing.js +104 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/middleware/trailing-slash/index.js +39 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/preset/quick.js +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/preset/tiny.js +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/request/constants.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/request.js +321 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/linear-router/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/linear-router/router.js +118 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/pattern-router/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/pattern-router/router.js +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/index.js +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/matcher.js +25 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/node.js +111 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/prepared-router.js +142 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/router.js +190 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/reg-exp-router/trie.js +59 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/smart-router/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/smart-router/router.js +58 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/trie-router/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/trie-router/node.js +188 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router/trie-router/router.js +26 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/router.js +14 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/aws-lambda/conninfo.d.ts +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/aws-lambda/handler.d.ts +184 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/aws-lambda/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/aws-lambda/types.d.ts +153 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/conninfo.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/index.d.ts +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/serve-static.d.ts +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/server.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/ssg.d.ts +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/bun/websocket.d.ts +39 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-pages/conninfo.d.ts +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-pages/handler.d.ts +33 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-pages/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/conninfo.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/serve-static-module.d.ts +4 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/serve-static.d.ts +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/utils.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/cloudflare-workers/websocket.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/deno/conninfo.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/deno/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/deno/serve-static.d.ts +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/deno/ssg.d.ts +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/deno/websocket.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/lambda-edge/conninfo.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/lambda-edge/handler.d.ts +87 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/lambda-edge/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/netlify/conninfo.d.ts +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/netlify/handler.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/netlify/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/netlify/mod.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/service-worker/handler.d.ts +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/service-worker/index.d.ts +28 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/service-worker/types.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/vercel/conninfo.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/vercel/handler.d.ts +2 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/adapter/vercel/index.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/client/client.d.ts +4 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/client/fetch-result-please.d.ts +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/client/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/client/types.d.ts +229 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/client/utils.d.ts +18 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/compose.d.ts +14 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/context.d.ts +455 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/accepts/accepts.d.ts +30 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/accepts/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/adapter/index.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/conninfo/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/conninfo/types.d.ts +36 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/cookie/index.d.ts +24 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/css/common.d.ts +59 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/css/index.d.ts +80 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/dev/index.d.ts +20 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/factory/index.d.ts +82 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/html/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/proxy/index.d.ts +72 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/route/index.d.ts +75 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/ssg/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/ssg/middleware.d.ts +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/ssg/plugins.d.ts +27 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/ssg/ssg.d.ts +91 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/ssg/utils.d.ts +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/streaming/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/streaming/sse.d.ts +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/streaming/stream.d.ts +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/streaming/text.d.ts +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/streaming/utils.d.ts +1 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/testing/index.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/helper/websocket/index.d.ts +69 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/hono-base.d.ts +220 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/hono.d.ts +19 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/http-exception.d.ts +59 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/index.d.ts +37 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/base.d.ts +56 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/children.d.ts +9 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/components.d.ts +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/constants.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/context.d.ts +51 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/client.d.ts +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/components.d.ts +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/context.d.ts +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/css.d.ts +83 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/hooks/index.d.ts +39 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/index.d.ts +88 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/intrinsic-element/components.d.ts +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/jsx-dev-runtime.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/jsx-runtime.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/render.d.ts +73 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/server.d.ts +106 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/dom/utils.d.ts +1 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/hooks/index.d.ts +45 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/index.d.ts +75 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/intrinsic-element/common.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/intrinsic-element/components.d.ts +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/intrinsic-elements.d.ts +722 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/jsx-dev-runtime.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/jsx-runtime.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/streaming.d.ts +36 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/types.d.ts +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/jsx/utils.d.ts +4 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/basic-auth/index.d.ts +75 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/bearer-auth/index.d.ts +92 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/body-limit/index.d.ts +45 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/cache/index.d.ts +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/combine/index.d.ts +85 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/compress/index.d.ts +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/context-storage/index.d.ts +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/cors/index.d.ts +55 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/csrf/index.d.ts +78 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/etag/digest.d.ts +1 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/etag/index.d.ts +42 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/ip-restriction/index.d.ts +67 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/jsx-renderer/index.d.ts +77 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/jwk/index.d.ts +1 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/jwk/jwk.d.ts +54 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/jwt/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/jwt/jwt.d.ts +67 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/language/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/language/language.d.ts +120 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/logger/index.d.ts +24 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/method-override/index.d.ts +48 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/powered-by/index.d.ts +29 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/pretty-json/index.d.ts +42 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/request-id/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/request-id/request-id.d.ts +37 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/secure-headers/index.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/secure-headers/permissions-policy.d.ts +14 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/secure-headers/secure-headers.d.ts +109 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/serve-static/index.d.ts +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/serve-static/path.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/timeout/index.d.ts +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/timing/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/timing/timing.d.ts +129 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/middleware/trailing-slash/index.d.ts +94 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/package.json +3 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/preset/quick.d.ts +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/preset/tiny.d.ts +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/request/constants.d.ts +1 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/request.d.ts +324 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/linear-router/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/linear-router/router.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/pattern-router/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/pattern-router/router.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/index.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/matcher.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/node.d.ts +10 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/prepared-router.d.ts +17 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/router.d.ts +11 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/reg-exp-router/trie.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/smart-router/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/smart-router/router.d.ts +11 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/trie-router/index.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/trie-router/node.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router/trie-router/router.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/router.d.ts +97 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/types.d.ts +573 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/accept.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/basic-auth.d.ts +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/body.d.ts +79 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/buffer.d.ts +17 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/color.d.ts +21 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/compress.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/concurrent.d.ts +11 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/constants.d.ts +4 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/cookie.d.ts +40 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/crypto.d.ts +15 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/encode.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/filepath.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/handler.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/headers.d.ts +8 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/html.d.ts +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/http-status.d.ts +32 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/ipaddr.d.ts +56 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/index.d.ts +18 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/jwa.d.ts +23 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/jws.d.ts +12 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/jwt.d.ts +43 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/types.d.ts +86 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/jwt/utf8.d.ts +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/mime.d.ts +70 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/stream.d.ts +31 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/types.d.ts +74 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/utils/url.d.ts +39 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/validator/index.d.ts +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/validator/utils.d.ts +29 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types/validator/validator.d.ts +16 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/types.js +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/accept.js +223 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/basic-auth.js +23 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/body.js +89 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/buffer.js +78 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/color.js +25 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/compress.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/concurrent.js +39 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/constants.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/cookie.js +173 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/crypto.js +44 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/encode.js +29 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/filepath.js +35 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/handler.js +13 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/headers.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/html.js +123 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/http-status.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/ipaddr.js +288 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/index.js +6 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/jwa.js +20 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/jws.js +192 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/jwt.js +207 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/types.js +124 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/jwt/utf8.js +7 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/mime.js +82 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/stream.js +81 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/types.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/utils/url.js +222 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/validator/index.js +5 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/validator/utils.js +0 -0
- package/node_modules/@zuplo/editor/node_modules/hono/dist/validator/validator.js +86 -0
- package/node_modules/@zuplo/editor/node_modules/hono/package.json +699 -0
- package/node_modules/@zuplo/graphql/package.json +1 -1
- package/node_modules/@zuplo/openapi-tools/package.json +1 -1
- package/node_modules/@zuplo/otel/out/esm/chunk-6UX7NFNJ.js +26 -0
- package/node_modules/@zuplo/otel/out/esm/chunk-6UX7NFNJ.js.map +1 -0
- package/node_modules/@zuplo/otel/out/esm/index.js +1 -1
- package/node_modules/@zuplo/otel/package.json +1 -1
- package/node_modules/@zuplo/runtime/out/esm/chunk-TOMTVLZA.js +405 -0
- package/node_modules/@zuplo/runtime/out/esm/chunk-TOMTVLZA.js.map +1 -0
- package/node_modules/@zuplo/runtime/out/esm/index.js +1 -1
- package/node_modules/@zuplo/runtime/out/esm/index.js.map +1 -1
- package/node_modules/@zuplo/runtime/out/esm/mcp-gateway/index.js +1 -1
- package/node_modules/@zuplo/runtime/out/esm/mcp-gateway/index.js.map +1 -1
- package/node_modules/@zuplo/runtime/out/types/index.d.ts +18 -0
- package/node_modules/@zuplo/runtime/package.json +1 -1
- package/node_modules/fast-uri/index.js +37 -1
- package/node_modules/fast-uri/package.json +1 -1
- package/node_modules/fast-uri/test/security.test.js +136 -0
- package/node_modules/hono/dist/cjs/jsx/hooks/index.js +14 -11
- package/node_modules/hono/dist/cjs/utils/cookie.js +2 -1
- package/node_modules/hono/dist/jsx/hooks/index.js +14 -11
- package/node_modules/hono/dist/utils/cookie.js +2 -1
- package/node_modules/hono/package.json +2 -3
- package/node_modules/ip-address/README.md +142 -128
- package/node_modules/ip-address/dist/common.d.ts +6 -0
- package/node_modules/ip-address/dist/common.js +17 -1
- package/node_modules/ip-address/dist/common.js.map +1 -1
- package/node_modules/ip-address/dist/ipv4.js +3 -12
- package/node_modules/ip-address/dist/ipv4.js.map +1 -1
- package/node_modules/ip-address/dist/ipv6.d.ts +9 -2
- package/node_modules/ip-address/dist/ipv6.js +35 -16
- package/node_modules/ip-address/dist/ipv6.js.map +1 -1
- package/node_modules/ip-address/package.json +5 -3
- package/package.json +6 -6
- package/node_modules/@zuplo/otel/out/esm/chunk-6IEB7H3W.js +0 -26
- package/node_modules/@zuplo/otel/out/esm/chunk-6IEB7H3W.js.map +0 -1
- package/node_modules/@zuplo/runtime/out/esm/chunk-6E46244D.js +0 -405
- package/node_modules/@zuplo/runtime/out/esm/chunk-6E46244D.js.map +0 -1
- /package/node_modules/@zuplo/runtime/out/esm/{chunk-6E46244D.js.LEGAL.txt → chunk-TOMTVLZA.js.LEGAL.txt} +0 -0
|
@@ -0,0 +1,699 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "hono",
|
|
3
|
+
"version": "4.12.32",
|
|
4
|
+
"description": "Web framework built on Web Standards",
|
|
5
|
+
"main": "dist/cjs/index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"module": "dist/index.js",
|
|
8
|
+
"types": "dist/types/index.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"!dist/**/*.tsbuildinfo"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"test": "tsc -p tsconfig.spec.json && vitest --run",
|
|
15
|
+
"test:watch": "vitest --watch",
|
|
16
|
+
"test:deno": "deno test --allow-read --allow-env --allow-write --allow-net -c runtime-tests/deno/deno.json runtime-tests/deno && deno test --no-lock -c runtime-tests/deno-jsx/deno.precompile.json runtime-tests/deno-jsx && deno test --no-lock -c runtime-tests/deno-jsx/deno.react-jsx.json runtime-tests/deno-jsx",
|
|
17
|
+
"test:bun": "bun test --jsx-import-source ../../src/jsx runtime-tests/bun/*",
|
|
18
|
+
"test:fastly": "vitest --run --project fastly",
|
|
19
|
+
"test:node": "vitest --run --project node",
|
|
20
|
+
"test:workerd": "vitest --run --project workerd",
|
|
21
|
+
"test:lambda": "vitest --run --project lambda",
|
|
22
|
+
"test:lambda-edge": "vitest --run --project lambda-edge",
|
|
23
|
+
"test:all": "bun run test && bun test:deno && bun test:bun",
|
|
24
|
+
"lint": "eslint src runtime-tests build perf-measures benchmarks",
|
|
25
|
+
"lint:fix": "eslint src runtime-tests build perf-measures benchmarks --fix",
|
|
26
|
+
"format": "prettier --check --cache \"src/**/*.{js,ts,tsx}\" \"runtime-tests/**/*.{js,ts,tsx}\" \"build/**/*.{js,ts,tsx}\" \"perf-measures/**/*.{js,ts,tsx}\" \"benchmarks/**/*.{js,ts,tsx}\"",
|
|
27
|
+
"format:fix": "prettier --write --cache --cache-strategy metadata \"src/**/*.{js,ts,tsx}\" \"runtime-tests/**/*.{js,ts,tsx}\" \"build/**/*.{js,ts,tsx}\" \"perf-measures/**/*.{js,ts,tsx}\" \"benchmarks/**/*.{js,ts,tsx}\"",
|
|
28
|
+
"editorconfig-checker": "editorconfig-checker",
|
|
29
|
+
"copy:package.cjs.json": "cp ./package.cjs.json ./dist/cjs/package.json && cp ./package.cjs.json ./dist/types/package.json",
|
|
30
|
+
"build": "bun run --shell bun remove-dist && bun ./build/build.ts && bun run copy:package.cjs.json",
|
|
31
|
+
"postbuild": "publint",
|
|
32
|
+
"watch": "bun run --shell bun remove-dist && bun ./build/build.ts --watch && bun run copy:package.cjs.json",
|
|
33
|
+
"coverage": "vitest --run --coverage",
|
|
34
|
+
"prerelease": "bun test:deno && bun run build",
|
|
35
|
+
"release": "np --no-publish",
|
|
36
|
+
"remove-dist": "rm -rf dist"
|
|
37
|
+
},
|
|
38
|
+
"exports": {
|
|
39
|
+
".": {
|
|
40
|
+
"types": "./dist/types/index.d.ts",
|
|
41
|
+
"import": "./dist/index.js",
|
|
42
|
+
"require": "./dist/cjs/index.js"
|
|
43
|
+
},
|
|
44
|
+
"./request": {
|
|
45
|
+
"types": "./dist/types/request.d.ts",
|
|
46
|
+
"import": "./dist/request.js",
|
|
47
|
+
"require": "./dist/cjs/request.js"
|
|
48
|
+
},
|
|
49
|
+
"./types": {
|
|
50
|
+
"types": "./dist/types/types.d.ts",
|
|
51
|
+
"import": "./dist/types.js",
|
|
52
|
+
"require": "./dist/cjs/types.js"
|
|
53
|
+
},
|
|
54
|
+
"./hono-base": {
|
|
55
|
+
"types": "./dist/types/hono-base.d.ts",
|
|
56
|
+
"import": "./dist/hono-base.js",
|
|
57
|
+
"require": "./dist/cjs/hono-base.js"
|
|
58
|
+
},
|
|
59
|
+
"./tiny": {
|
|
60
|
+
"types": "./dist/types/preset/tiny.d.ts",
|
|
61
|
+
"import": "./dist/preset/tiny.js",
|
|
62
|
+
"require": "./dist/cjs/preset/tiny.js"
|
|
63
|
+
},
|
|
64
|
+
"./quick": {
|
|
65
|
+
"types": "./dist/types/preset/quick.d.ts",
|
|
66
|
+
"import": "./dist/preset/quick.js",
|
|
67
|
+
"require": "./dist/cjs/preset/quick.js"
|
|
68
|
+
},
|
|
69
|
+
"./http-exception": {
|
|
70
|
+
"types": "./dist/types/http-exception.d.ts",
|
|
71
|
+
"import": "./dist/http-exception.js",
|
|
72
|
+
"require": "./dist/cjs/http-exception.js"
|
|
73
|
+
},
|
|
74
|
+
"./basic-auth": {
|
|
75
|
+
"types": "./dist/types/middleware/basic-auth/index.d.ts",
|
|
76
|
+
"import": "./dist/middleware/basic-auth/index.js",
|
|
77
|
+
"require": "./dist/cjs/middleware/basic-auth/index.js"
|
|
78
|
+
},
|
|
79
|
+
"./bearer-auth": {
|
|
80
|
+
"types": "./dist/types/middleware/bearer-auth/index.d.ts",
|
|
81
|
+
"import": "./dist/middleware/bearer-auth/index.js",
|
|
82
|
+
"require": "./dist/cjs/middleware/bearer-auth/index.js"
|
|
83
|
+
},
|
|
84
|
+
"./body-limit": {
|
|
85
|
+
"types": "./dist/types/middleware/body-limit/index.d.ts",
|
|
86
|
+
"import": "./dist/middleware/body-limit/index.js",
|
|
87
|
+
"require": "./dist/cjs/middleware/body-limit/index.js"
|
|
88
|
+
},
|
|
89
|
+
"./ip-restriction": {
|
|
90
|
+
"types": "./dist/types/middleware/ip-restriction/index.d.ts",
|
|
91
|
+
"import": "./dist/middleware/ip-restriction/index.js",
|
|
92
|
+
"require": "./dist/cjs/middleware/ip-restriction/index.js"
|
|
93
|
+
},
|
|
94
|
+
"./cache": {
|
|
95
|
+
"types": "./dist/types/middleware/cache/index.d.ts",
|
|
96
|
+
"import": "./dist/middleware/cache/index.js",
|
|
97
|
+
"require": "./dist/cjs/middleware/cache/index.js"
|
|
98
|
+
},
|
|
99
|
+
"./route": {
|
|
100
|
+
"types": "./dist/types/helper/route/index.d.ts",
|
|
101
|
+
"import": "./dist/helper/route/index.js",
|
|
102
|
+
"require": "./dist/cjs/helper/route/index.js"
|
|
103
|
+
},
|
|
104
|
+
"./cookie": {
|
|
105
|
+
"types": "./dist/types/helper/cookie/index.d.ts",
|
|
106
|
+
"import": "./dist/helper/cookie/index.js",
|
|
107
|
+
"require": "./dist/cjs/helper/cookie/index.js"
|
|
108
|
+
},
|
|
109
|
+
"./accepts": {
|
|
110
|
+
"types": "./dist/types/helper/accepts/index.d.ts",
|
|
111
|
+
"import": "./dist/helper/accepts/index.js",
|
|
112
|
+
"require": "./dist/cjs/helper/accepts/index.js"
|
|
113
|
+
},
|
|
114
|
+
"./compress": {
|
|
115
|
+
"types": "./dist/types/middleware/compress/index.d.ts",
|
|
116
|
+
"import": "./dist/middleware/compress/index.js",
|
|
117
|
+
"require": "./dist/cjs/middleware/compress/index.js"
|
|
118
|
+
},
|
|
119
|
+
"./context-storage": {
|
|
120
|
+
"types": "./dist/types/middleware/context-storage/index.d.ts",
|
|
121
|
+
"import": "./dist/middleware/context-storage/index.js",
|
|
122
|
+
"require": "./dist/cjs/middleware/context-storage/index.js"
|
|
123
|
+
},
|
|
124
|
+
"./cors": {
|
|
125
|
+
"types": "./dist/types/middleware/cors/index.d.ts",
|
|
126
|
+
"import": "./dist/middleware/cors/index.js",
|
|
127
|
+
"require": "./dist/cjs/middleware/cors/index.js"
|
|
128
|
+
},
|
|
129
|
+
"./csrf": {
|
|
130
|
+
"types": "./dist/types/middleware/csrf/index.d.ts",
|
|
131
|
+
"import": "./dist/middleware/csrf/index.js",
|
|
132
|
+
"require": "./dist/cjs/middleware/csrf/index.js"
|
|
133
|
+
},
|
|
134
|
+
"./etag": {
|
|
135
|
+
"types": "./dist/types/middleware/etag/index.d.ts",
|
|
136
|
+
"import": "./dist/middleware/etag/index.js",
|
|
137
|
+
"require": "./dist/cjs/middleware/etag/index.js"
|
|
138
|
+
},
|
|
139
|
+
"./trailing-slash": {
|
|
140
|
+
"types": "./dist/types/middleware/trailing-slash/index.d.ts",
|
|
141
|
+
"import": "./dist/middleware/trailing-slash/index.js",
|
|
142
|
+
"require": "./dist/cjs/middleware/trailing-slash/index.js"
|
|
143
|
+
},
|
|
144
|
+
"./html": {
|
|
145
|
+
"types": "./dist/types/helper/html/index.d.ts",
|
|
146
|
+
"import": "./dist/helper/html/index.js",
|
|
147
|
+
"require": "./dist/cjs/helper/html/index.js"
|
|
148
|
+
},
|
|
149
|
+
"./css": {
|
|
150
|
+
"types": "./dist/types/helper/css/index.d.ts",
|
|
151
|
+
"import": "./dist/helper/css/index.js",
|
|
152
|
+
"require": "./dist/cjs/helper/css/index.js"
|
|
153
|
+
},
|
|
154
|
+
"./jsx": {
|
|
155
|
+
"types": "./dist/types/jsx/index.d.ts",
|
|
156
|
+
"import": "./dist/jsx/index.js",
|
|
157
|
+
"require": "./dist/cjs/jsx/index.js"
|
|
158
|
+
},
|
|
159
|
+
"./jsx/jsx-dev-runtime": {
|
|
160
|
+
"types": "./dist/types/jsx/jsx-dev-runtime.d.ts",
|
|
161
|
+
"import": "./dist/jsx/jsx-dev-runtime.js",
|
|
162
|
+
"require": "./dist/cjs/jsx/jsx-dev-runtime.js"
|
|
163
|
+
},
|
|
164
|
+
"./jsx/jsx-runtime": {
|
|
165
|
+
"types": "./dist/types/jsx/jsx-runtime.d.ts",
|
|
166
|
+
"import": "./dist/jsx/jsx-runtime.js",
|
|
167
|
+
"require": "./dist/cjs/jsx/jsx-runtime.js"
|
|
168
|
+
},
|
|
169
|
+
"./jsx/streaming": {
|
|
170
|
+
"types": "./dist/types/jsx/streaming.d.ts",
|
|
171
|
+
"import": "./dist/jsx/streaming.js",
|
|
172
|
+
"require": "./dist/cjs/jsx/streaming.js"
|
|
173
|
+
},
|
|
174
|
+
"./jsx-renderer": {
|
|
175
|
+
"types": "./dist/types/middleware/jsx-renderer/index.d.ts",
|
|
176
|
+
"import": "./dist/middleware/jsx-renderer/index.js",
|
|
177
|
+
"require": "./dist/cjs/middleware/jsx-renderer/index.js"
|
|
178
|
+
},
|
|
179
|
+
"./jsx/dom": {
|
|
180
|
+
"types": "./dist/types/jsx/dom/index.d.ts",
|
|
181
|
+
"import": "./dist/jsx/dom/index.js",
|
|
182
|
+
"require": "./dist/cjs/jsx/dom/index.js"
|
|
183
|
+
},
|
|
184
|
+
"./jsx/dom/jsx-dev-runtime": {
|
|
185
|
+
"types": "./dist/types/jsx/dom/jsx-dev-runtime.d.ts",
|
|
186
|
+
"import": "./dist/jsx/dom/jsx-dev-runtime.js",
|
|
187
|
+
"require": "./dist/cjs/jsx/dom/jsx-dev-runtime.js"
|
|
188
|
+
},
|
|
189
|
+
"./jsx/dom/jsx-runtime": {
|
|
190
|
+
"types": "./dist/types/jsx/dom/jsx-runtime.d.ts",
|
|
191
|
+
"import": "./dist/jsx/dom/jsx-runtime.js",
|
|
192
|
+
"require": "./dist/cjs/jsx/dom/jsx-runtime.js"
|
|
193
|
+
},
|
|
194
|
+
"./jsx/dom/client": {
|
|
195
|
+
"types": "./dist/types/jsx/dom/client.d.ts",
|
|
196
|
+
"import": "./dist/jsx/dom/client.js",
|
|
197
|
+
"require": "./dist/cjs/jsx/dom/client.js"
|
|
198
|
+
},
|
|
199
|
+
"./jsx/dom/css": {
|
|
200
|
+
"types": "./dist/types/jsx/dom/css.d.ts",
|
|
201
|
+
"import": "./dist/jsx/dom/css.js",
|
|
202
|
+
"require": "./dist/cjs/jsx/dom/css.js"
|
|
203
|
+
},
|
|
204
|
+
"./jsx/dom/server": {
|
|
205
|
+
"types": "./dist/types/jsx/dom/server.d.ts",
|
|
206
|
+
"import": "./dist/jsx/dom/server.js",
|
|
207
|
+
"require": "./dist/cjs/jsx/dom/server.js"
|
|
208
|
+
},
|
|
209
|
+
"./jwt": {
|
|
210
|
+
"types": "./dist/types/middleware/jwt/index.d.ts",
|
|
211
|
+
"import": "./dist/middleware/jwt/index.js",
|
|
212
|
+
"require": "./dist/cjs/middleware/jwt/index.js"
|
|
213
|
+
},
|
|
214
|
+
"./jwk": {
|
|
215
|
+
"types": "./dist/types/middleware/jwk/index.d.ts",
|
|
216
|
+
"import": "./dist/middleware/jwk/index.js",
|
|
217
|
+
"require": "./dist/cjs/middleware/jwk/index.js"
|
|
218
|
+
},
|
|
219
|
+
"./timeout": {
|
|
220
|
+
"types": "./dist/types/middleware/timeout/index.d.ts",
|
|
221
|
+
"import": "./dist/middleware/timeout/index.js",
|
|
222
|
+
"require": "./dist/cjs/middleware/timeout/index.js"
|
|
223
|
+
},
|
|
224
|
+
"./timing": {
|
|
225
|
+
"types": "./dist/types/middleware/timing/index.d.ts",
|
|
226
|
+
"import": "./dist/middleware/timing/index.js",
|
|
227
|
+
"require": "./dist/cjs/middleware/timing/index.js"
|
|
228
|
+
},
|
|
229
|
+
"./logger": {
|
|
230
|
+
"types": "./dist/types/middleware/logger/index.d.ts",
|
|
231
|
+
"import": "./dist/middleware/logger/index.js",
|
|
232
|
+
"require": "./dist/cjs/middleware/logger/index.js"
|
|
233
|
+
},
|
|
234
|
+
"./method-override": {
|
|
235
|
+
"types": "./dist/types/middleware/method-override/index.d.ts",
|
|
236
|
+
"import": "./dist/middleware/method-override/index.js",
|
|
237
|
+
"require": "./dist/cjs/middleware/method-override/index.js"
|
|
238
|
+
},
|
|
239
|
+
"./powered-by": {
|
|
240
|
+
"types": "./dist/types/middleware/powered-by/index.d.ts",
|
|
241
|
+
"import": "./dist/middleware/powered-by/index.js",
|
|
242
|
+
"require": "./dist/cjs/middleware/powered-by/index.js"
|
|
243
|
+
},
|
|
244
|
+
"./pretty-json": {
|
|
245
|
+
"types": "./dist/types/middleware/pretty-json/index.d.ts",
|
|
246
|
+
"import": "./dist/middleware/pretty-json/index.js",
|
|
247
|
+
"require": "./dist/cjs/middleware/pretty-json/index.js"
|
|
248
|
+
},
|
|
249
|
+
"./request-id": {
|
|
250
|
+
"types": "./dist/types/middleware/request-id/index.d.ts",
|
|
251
|
+
"import": "./dist/middleware/request-id/index.js",
|
|
252
|
+
"require": "./dist/cjs/middleware/request-id/index.js"
|
|
253
|
+
},
|
|
254
|
+
"./language": {
|
|
255
|
+
"types": "./dist/types/middleware/language/index.d.ts",
|
|
256
|
+
"import": "./dist/middleware/language/index.js",
|
|
257
|
+
"require": "./dist/cjs/middleware/language/index.js"
|
|
258
|
+
},
|
|
259
|
+
"./secure-headers": {
|
|
260
|
+
"types": "./dist/types/middleware/secure-headers/index.d.ts",
|
|
261
|
+
"import": "./dist/middleware/secure-headers/index.js",
|
|
262
|
+
"require": "./dist/cjs/middleware/secure-headers/index.js"
|
|
263
|
+
},
|
|
264
|
+
"./combine": {
|
|
265
|
+
"types": "./dist/types/middleware/combine/index.d.ts",
|
|
266
|
+
"import": "./dist/middleware/combine/index.js",
|
|
267
|
+
"require": "./dist/cjs/middleware/combine/index.js"
|
|
268
|
+
},
|
|
269
|
+
"./ssg": {
|
|
270
|
+
"types": "./dist/types/helper/ssg/index.d.ts",
|
|
271
|
+
"import": "./dist/helper/ssg/index.js",
|
|
272
|
+
"require": "./dist/cjs/helper/ssg/index.js"
|
|
273
|
+
},
|
|
274
|
+
"./streaming": {
|
|
275
|
+
"types": "./dist/types/helper/streaming/index.d.ts",
|
|
276
|
+
"import": "./dist/helper/streaming/index.js",
|
|
277
|
+
"require": "./dist/cjs/helper/streaming/index.js"
|
|
278
|
+
},
|
|
279
|
+
"./validator": {
|
|
280
|
+
"types": "./dist/types/validator/index.d.ts",
|
|
281
|
+
"import": "./dist/validator/index.js",
|
|
282
|
+
"require": "./dist/cjs/validator/index.js"
|
|
283
|
+
},
|
|
284
|
+
"./router": {
|
|
285
|
+
"types": "./dist/types/router.d.ts",
|
|
286
|
+
"import": "./dist/router.js",
|
|
287
|
+
"require": "./dist/cjs/router.js"
|
|
288
|
+
},
|
|
289
|
+
"./router/reg-exp-router": {
|
|
290
|
+
"types": "./dist/types/router/reg-exp-router/index.d.ts",
|
|
291
|
+
"import": "./dist/router/reg-exp-router/index.js",
|
|
292
|
+
"require": "./dist/cjs/router/reg-exp-router/index.js"
|
|
293
|
+
},
|
|
294
|
+
"./router/smart-router": {
|
|
295
|
+
"types": "./dist/types/router/smart-router/index.d.ts",
|
|
296
|
+
"import": "./dist/router/smart-router/index.js",
|
|
297
|
+
"require": "./dist/cjs/router/smart-router/index.js"
|
|
298
|
+
},
|
|
299
|
+
"./router/trie-router": {
|
|
300
|
+
"types": "./dist/types/router/trie-router/index.d.ts",
|
|
301
|
+
"import": "./dist/router/trie-router/index.js",
|
|
302
|
+
"require": "./dist/cjs/router/trie-router/index.js"
|
|
303
|
+
},
|
|
304
|
+
"./router/pattern-router": {
|
|
305
|
+
"types": "./dist/types/router/pattern-router/index.d.ts",
|
|
306
|
+
"import": "./dist/router/pattern-router/index.js",
|
|
307
|
+
"require": "./dist/cjs/router/pattern-router/index.js"
|
|
308
|
+
},
|
|
309
|
+
"./router/linear-router": {
|
|
310
|
+
"types": "./dist/types/router/linear-router/index.d.ts",
|
|
311
|
+
"import": "./dist/router/linear-router/index.js",
|
|
312
|
+
"require": "./dist/cjs/router/linear-router/index.js"
|
|
313
|
+
},
|
|
314
|
+
"./utils/jwt": {
|
|
315
|
+
"types": "./dist/types/utils/jwt/index.d.ts",
|
|
316
|
+
"import": "./dist/utils/jwt/index.js",
|
|
317
|
+
"require": "./dist/cjs/utils/jwt/index.js"
|
|
318
|
+
},
|
|
319
|
+
"./utils/*": {
|
|
320
|
+
"types": "./dist/types/utils/*.d.ts",
|
|
321
|
+
"import": "./dist/utils/*.js",
|
|
322
|
+
"require": "./dist/cjs/utils/*.js"
|
|
323
|
+
},
|
|
324
|
+
"./client": {
|
|
325
|
+
"types": "./dist/types/client/index.d.ts",
|
|
326
|
+
"import": "./dist/client/index.js",
|
|
327
|
+
"require": "./dist/cjs/client/index.js"
|
|
328
|
+
},
|
|
329
|
+
"./adapter": {
|
|
330
|
+
"types": "./dist/types/helper/adapter/index.d.ts",
|
|
331
|
+
"import": "./dist/helper/adapter/index.js",
|
|
332
|
+
"require": "./dist/cjs/helper/adapter/index.js"
|
|
333
|
+
},
|
|
334
|
+
"./factory": {
|
|
335
|
+
"types": "./dist/types/helper/factory/index.d.ts",
|
|
336
|
+
"import": "./dist/helper/factory/index.js",
|
|
337
|
+
"require": "./dist/cjs/helper/factory/index.js"
|
|
338
|
+
},
|
|
339
|
+
"./serve-static": {
|
|
340
|
+
"types": "./dist/types/middleware/serve-static/index.d.ts",
|
|
341
|
+
"import": "./dist/middleware/serve-static/index.js",
|
|
342
|
+
"require": "./dist/cjs/middleware/serve-static/index.js"
|
|
343
|
+
},
|
|
344
|
+
"./cloudflare-workers": {
|
|
345
|
+
"types": "./dist/types/adapter/cloudflare-workers/index.d.ts",
|
|
346
|
+
"import": "./dist/adapter/cloudflare-workers/index.js",
|
|
347
|
+
"require": "./dist/cjs/adapter/cloudflare-workers/index.js"
|
|
348
|
+
},
|
|
349
|
+
"./cloudflare-pages": {
|
|
350
|
+
"types": "./dist/types/adapter/cloudflare-pages/index.d.ts",
|
|
351
|
+
"import": "./dist/adapter/cloudflare-pages/index.js",
|
|
352
|
+
"require": "./dist/cjs/adapter/cloudflare-pages/index.js"
|
|
353
|
+
},
|
|
354
|
+
"./deno": {
|
|
355
|
+
"types": "./dist/types/adapter/deno/index.d.ts",
|
|
356
|
+
"import": "./dist/adapter/deno/index.js",
|
|
357
|
+
"require": "./dist/cjs/adapter/deno/index.js"
|
|
358
|
+
},
|
|
359
|
+
"./bun": {
|
|
360
|
+
"types": "./dist/types/adapter/bun/index.d.ts",
|
|
361
|
+
"import": "./dist/adapter/bun/index.js",
|
|
362
|
+
"require": "./dist/cjs/adapter/bun/index.js"
|
|
363
|
+
},
|
|
364
|
+
"./aws-lambda": {
|
|
365
|
+
"types": "./dist/types/adapter/aws-lambda/index.d.ts",
|
|
366
|
+
"import": "./dist/adapter/aws-lambda/index.js",
|
|
367
|
+
"require": "./dist/cjs/adapter/aws-lambda/index.js"
|
|
368
|
+
},
|
|
369
|
+
"./vercel": {
|
|
370
|
+
"types": "./dist/types/adapter/vercel/index.d.ts",
|
|
371
|
+
"import": "./dist/adapter/vercel/index.js",
|
|
372
|
+
"require": "./dist/cjs/adapter/vercel/index.js"
|
|
373
|
+
},
|
|
374
|
+
"./netlify": {
|
|
375
|
+
"types": "./dist/types/adapter/netlify/index.d.ts",
|
|
376
|
+
"import": "./dist/adapter/netlify/index.js",
|
|
377
|
+
"require": "./dist/cjs/adapter/netlify/index.js"
|
|
378
|
+
},
|
|
379
|
+
"./lambda-edge": {
|
|
380
|
+
"types": "./dist/types/adapter/lambda-edge/index.d.ts",
|
|
381
|
+
"import": "./dist/adapter/lambda-edge/index.js",
|
|
382
|
+
"require": "./dist/cjs/adapter/lambda-edge/index.js"
|
|
383
|
+
},
|
|
384
|
+
"./service-worker": {
|
|
385
|
+
"types": "./dist/types/adapter/service-worker/index.d.ts",
|
|
386
|
+
"import": "./dist/adapter/service-worker/index.js",
|
|
387
|
+
"require": "./dist/cjs/adapter/service-worker/index.js"
|
|
388
|
+
},
|
|
389
|
+
"./testing": {
|
|
390
|
+
"types": "./dist/types/helper/testing/index.d.ts",
|
|
391
|
+
"import": "./dist/helper/testing/index.js",
|
|
392
|
+
"require": "./dist/cjs/helper/testing/index.js"
|
|
393
|
+
},
|
|
394
|
+
"./dev": {
|
|
395
|
+
"types": "./dist/types/helper/dev/index.d.ts",
|
|
396
|
+
"import": "./dist/helper/dev/index.js",
|
|
397
|
+
"require": "./dist/cjs/helper/dev/index.js"
|
|
398
|
+
},
|
|
399
|
+
"./ws": {
|
|
400
|
+
"types": "./dist/types/helper/websocket/index.d.ts",
|
|
401
|
+
"import": "./dist/helper/websocket/index.js",
|
|
402
|
+
"require": "./dist/cjs/helper/websocket/index.js"
|
|
403
|
+
},
|
|
404
|
+
"./conninfo": {
|
|
405
|
+
"types": "./dist/types/helper/conninfo/index.d.ts",
|
|
406
|
+
"import": "./dist/helper/conninfo/index.js",
|
|
407
|
+
"require": "./dist/cjs/helper/conninfo/index.js"
|
|
408
|
+
},
|
|
409
|
+
"./proxy": {
|
|
410
|
+
"types": "./dist/types/helper/proxy/index.d.ts",
|
|
411
|
+
"import": "./dist/helper/proxy/index.js",
|
|
412
|
+
"require": "./dist/cjs/helper/proxy/index.js"
|
|
413
|
+
}
|
|
414
|
+
},
|
|
415
|
+
"typesVersions": {
|
|
416
|
+
"*": {
|
|
417
|
+
"request": [
|
|
418
|
+
"./dist/types/request"
|
|
419
|
+
],
|
|
420
|
+
"types": [
|
|
421
|
+
"./dist/types/types"
|
|
422
|
+
],
|
|
423
|
+
"hono-base": [
|
|
424
|
+
"./dist/types/hono-base"
|
|
425
|
+
],
|
|
426
|
+
"tiny": [
|
|
427
|
+
"./dist/types/preset/tiny"
|
|
428
|
+
],
|
|
429
|
+
"quick": [
|
|
430
|
+
"./dist/types/preset/quick"
|
|
431
|
+
],
|
|
432
|
+
"http-exception": [
|
|
433
|
+
"./dist/types/http-exception"
|
|
434
|
+
],
|
|
435
|
+
"basic-auth": [
|
|
436
|
+
"./dist/types/middleware/basic-auth"
|
|
437
|
+
],
|
|
438
|
+
"bearer-auth": [
|
|
439
|
+
"./dist/types/middleware/bearer-auth"
|
|
440
|
+
],
|
|
441
|
+
"body-limit": [
|
|
442
|
+
"./dist/types/middleware/body-limit"
|
|
443
|
+
],
|
|
444
|
+
"ip-restriction": [
|
|
445
|
+
"./dist/types/middleware/ip-restriction"
|
|
446
|
+
],
|
|
447
|
+
"cache": [
|
|
448
|
+
"./dist/types/middleware/cache"
|
|
449
|
+
],
|
|
450
|
+
"route": [
|
|
451
|
+
"./dist/types/helper/route"
|
|
452
|
+
],
|
|
453
|
+
"cookie": [
|
|
454
|
+
"./dist/types/helper/cookie"
|
|
455
|
+
],
|
|
456
|
+
"accepts": [
|
|
457
|
+
"./dist/types/helper/accepts"
|
|
458
|
+
],
|
|
459
|
+
"compress": [
|
|
460
|
+
"./dist/types/middleware/compress"
|
|
461
|
+
],
|
|
462
|
+
"context-storage": [
|
|
463
|
+
"./dist/types/middleware/context-storage"
|
|
464
|
+
],
|
|
465
|
+
"cors": [
|
|
466
|
+
"./dist/types/middleware/cors"
|
|
467
|
+
],
|
|
468
|
+
"csrf": [
|
|
469
|
+
"./dist/types/middleware/csrf"
|
|
470
|
+
],
|
|
471
|
+
"etag": [
|
|
472
|
+
"./dist/types/middleware/etag"
|
|
473
|
+
],
|
|
474
|
+
"trailing-slash": [
|
|
475
|
+
"./dist/types/middleware/trailing-slash"
|
|
476
|
+
],
|
|
477
|
+
"html": [
|
|
478
|
+
"./dist/types/helper/html"
|
|
479
|
+
],
|
|
480
|
+
"css": [
|
|
481
|
+
"./dist/types/helper/css"
|
|
482
|
+
],
|
|
483
|
+
"jsx": [
|
|
484
|
+
"./dist/types/jsx"
|
|
485
|
+
],
|
|
486
|
+
"jsx/jsx-runtime": [
|
|
487
|
+
"./dist/types/jsx/jsx-runtime.d.ts"
|
|
488
|
+
],
|
|
489
|
+
"jsx/jsx-dev-runtime": [
|
|
490
|
+
"./dist/types/jsx/jsx-dev-runtime.d.ts"
|
|
491
|
+
],
|
|
492
|
+
"jsx/streaming": [
|
|
493
|
+
"./dist/types/jsx/streaming.d.ts"
|
|
494
|
+
],
|
|
495
|
+
"jsx-renderer": [
|
|
496
|
+
"./dist/types/middleware/jsx-renderer"
|
|
497
|
+
],
|
|
498
|
+
"jsx/dom": [
|
|
499
|
+
"./dist/types/jsx/dom"
|
|
500
|
+
],
|
|
501
|
+
"jsx/dom/client": [
|
|
502
|
+
"./dist/types/jsx/dom/client.d.ts"
|
|
503
|
+
],
|
|
504
|
+
"jsx/dom/css": [
|
|
505
|
+
"./dist/types/jsx/dom/css.d.ts"
|
|
506
|
+
],
|
|
507
|
+
"jsx/dom/server": [
|
|
508
|
+
"./dist/types/jsx/dom/server.d.ts"
|
|
509
|
+
],
|
|
510
|
+
"jsx/dom/jsx-dev-runtime": [
|
|
511
|
+
"./dist/types/jsx/dom/jsx-dev-runtime.d.ts"
|
|
512
|
+
],
|
|
513
|
+
"jsx/dom/jsx-runtime": [
|
|
514
|
+
"./dist/types/jsx/dom/jsx-runtime.d.ts"
|
|
515
|
+
],
|
|
516
|
+
"jwt": [
|
|
517
|
+
"./dist/types/middleware/jwt"
|
|
518
|
+
],
|
|
519
|
+
"jwk": [
|
|
520
|
+
"./dist/types/middleware/jwk"
|
|
521
|
+
],
|
|
522
|
+
"timeout": [
|
|
523
|
+
"./dist/types/middleware/timeout"
|
|
524
|
+
],
|
|
525
|
+
"timing": [
|
|
526
|
+
"./dist/types/middleware/timing"
|
|
527
|
+
],
|
|
528
|
+
"logger": [
|
|
529
|
+
"./dist/types/middleware/logger"
|
|
530
|
+
],
|
|
531
|
+
"method-override": [
|
|
532
|
+
"./dist/types/middleware/method-override"
|
|
533
|
+
],
|
|
534
|
+
"powered-by": [
|
|
535
|
+
"./dist/types/middleware/powered-by"
|
|
536
|
+
],
|
|
537
|
+
"pretty-json": [
|
|
538
|
+
"./dist/types/middleware/pretty-json"
|
|
539
|
+
],
|
|
540
|
+
"request-id": [
|
|
541
|
+
"./dist/types/middleware/request-id"
|
|
542
|
+
],
|
|
543
|
+
"language": [
|
|
544
|
+
"./dist/types/middleware/language"
|
|
545
|
+
],
|
|
546
|
+
"streaming": [
|
|
547
|
+
"./dist/types/helper/streaming"
|
|
548
|
+
],
|
|
549
|
+
"ssg": [
|
|
550
|
+
"./dist/types/helper/ssg"
|
|
551
|
+
],
|
|
552
|
+
"secure-headers": [
|
|
553
|
+
"./dist/types/middleware/secure-headers"
|
|
554
|
+
],
|
|
555
|
+
"combine": [
|
|
556
|
+
"./dist/types/middleware/combine"
|
|
557
|
+
],
|
|
558
|
+
"validator": [
|
|
559
|
+
"./dist/types/validator/index.d.ts"
|
|
560
|
+
],
|
|
561
|
+
"router": [
|
|
562
|
+
"./dist/types/router.d.ts"
|
|
563
|
+
],
|
|
564
|
+
"router/reg-exp-router": [
|
|
565
|
+
"./dist/types/router/reg-exp-router"
|
|
566
|
+
],
|
|
567
|
+
"router/smart-router": [
|
|
568
|
+
"./dist/types/router/smart-router"
|
|
569
|
+
],
|
|
570
|
+
"router/trie-router": [
|
|
571
|
+
"./dist/types/router/trie-router"
|
|
572
|
+
],
|
|
573
|
+
"router/pattern-router": [
|
|
574
|
+
"./dist/types/router/pattern-router"
|
|
575
|
+
],
|
|
576
|
+
"router/linear-router": [
|
|
577
|
+
"./dist/types/router/linear-router"
|
|
578
|
+
],
|
|
579
|
+
"utils/jwt": [
|
|
580
|
+
"./dist/types/utils/jwt/index.d.ts"
|
|
581
|
+
],
|
|
582
|
+
"utils/*": [
|
|
583
|
+
"./dist/types/utils/*"
|
|
584
|
+
],
|
|
585
|
+
"client": [
|
|
586
|
+
"./dist/types/client/index.d.ts"
|
|
587
|
+
],
|
|
588
|
+
"adapter": [
|
|
589
|
+
"./dist/types/helper/adapter/index.d.ts"
|
|
590
|
+
],
|
|
591
|
+
"factory": [
|
|
592
|
+
"./dist/types/helper/factory/index.d.ts"
|
|
593
|
+
],
|
|
594
|
+
"serve-static": [
|
|
595
|
+
"./dist/types/middleware/serve-static"
|
|
596
|
+
],
|
|
597
|
+
"cloudflare-workers": [
|
|
598
|
+
"./dist/types/adapter/cloudflare-workers"
|
|
599
|
+
],
|
|
600
|
+
"cloudflare-pages": [
|
|
601
|
+
"./dist/types/adapter/cloudflare-pages"
|
|
602
|
+
],
|
|
603
|
+
"deno": [
|
|
604
|
+
"./dist/types/adapter/deno"
|
|
605
|
+
],
|
|
606
|
+
"bun": [
|
|
607
|
+
"./dist/types/adapter/bun"
|
|
608
|
+
],
|
|
609
|
+
"aws-lambda": [
|
|
610
|
+
"./dist/types/adapter/aws-lambda"
|
|
611
|
+
],
|
|
612
|
+
"vercel": [
|
|
613
|
+
"./dist/types/adapter/vercel"
|
|
614
|
+
],
|
|
615
|
+
"netlify": [
|
|
616
|
+
"./dist/types/adapter/netlify"
|
|
617
|
+
],
|
|
618
|
+
"lambda-edge": [
|
|
619
|
+
"./dist/types/adapter/lambda-edge"
|
|
620
|
+
],
|
|
621
|
+
"service-worker": [
|
|
622
|
+
"./dist/types/adapter/service-worker"
|
|
623
|
+
],
|
|
624
|
+
"testing": [
|
|
625
|
+
"./dist/types/helper/testing"
|
|
626
|
+
],
|
|
627
|
+
"dev": [
|
|
628
|
+
"./dist/types/helper/dev"
|
|
629
|
+
],
|
|
630
|
+
"ws": [
|
|
631
|
+
"./dist/types/helper/websocket"
|
|
632
|
+
],
|
|
633
|
+
"conninfo": [
|
|
634
|
+
"./dist/types/helper/conninfo"
|
|
635
|
+
],
|
|
636
|
+
"proxy": [
|
|
637
|
+
"./dist/types/helper/proxy"
|
|
638
|
+
]
|
|
639
|
+
}
|
|
640
|
+
},
|
|
641
|
+
"author": "Yusuke Wada <yusuke@kamawada.com> (https://github.com/yusukebe)",
|
|
642
|
+
"license": "MIT",
|
|
643
|
+
"repository": {
|
|
644
|
+
"type": "git",
|
|
645
|
+
"url": "git+https://github.com/honojs/hono.git"
|
|
646
|
+
},
|
|
647
|
+
"publishConfig": {
|
|
648
|
+
"registry": "https://registry.npmjs.org"
|
|
649
|
+
},
|
|
650
|
+
"homepage": "https://hono.dev",
|
|
651
|
+
"keywords": [
|
|
652
|
+
"hono",
|
|
653
|
+
"web",
|
|
654
|
+
"app",
|
|
655
|
+
"http",
|
|
656
|
+
"application",
|
|
657
|
+
"framework",
|
|
658
|
+
"router",
|
|
659
|
+
"cloudflare",
|
|
660
|
+
"workers",
|
|
661
|
+
"fastly",
|
|
662
|
+
"compute",
|
|
663
|
+
"deno",
|
|
664
|
+
"bun",
|
|
665
|
+
"lambda",
|
|
666
|
+
"nodejs"
|
|
667
|
+
],
|
|
668
|
+
"devDependencies": {
|
|
669
|
+
"@hono/eslint-config": "^2.1.1",
|
|
670
|
+
"@hono/node-server": "^2.0.2",
|
|
671
|
+
"@types/jsdom": "^21.1.7",
|
|
672
|
+
"@types/node": "^24.3.0",
|
|
673
|
+
"@types/ws": "^8.18.1",
|
|
674
|
+
"@typescript/native-preview": "7.0.0-dev.20260210.1",
|
|
675
|
+
"@vitest/coverage-v8": "^4.1.7",
|
|
676
|
+
"bun-types": "^1.2.20",
|
|
677
|
+
"editorconfig-checker": "6.1.1",
|
|
678
|
+
"esbuild": "^0.27.1",
|
|
679
|
+
"eslint": "^9.39.3",
|
|
680
|
+
"jsdom": "22.1.0",
|
|
681
|
+
"msw": "^2.6.0",
|
|
682
|
+
"np": "11.2.1",
|
|
683
|
+
"oxc-parser": "^0.96.0",
|
|
684
|
+
"pkg-pr-new": "^0.0.53",
|
|
685
|
+
"prettier": "3.7.4",
|
|
686
|
+
"publint": "0.3.15",
|
|
687
|
+
"typescript": "^6.0.3",
|
|
688
|
+
"undici": "^6.27.0",
|
|
689
|
+
"vite-plugin-fastly-js-compute": "^0.4.2",
|
|
690
|
+
"vitest": "^4.1.9",
|
|
691
|
+
"wrangler": "4.107.0",
|
|
692
|
+
"ws": "^8.21.0",
|
|
693
|
+
"zod": "^3.23.8"
|
|
694
|
+
},
|
|
695
|
+
"packageManager": "bun@1.2.20",
|
|
696
|
+
"engines": {
|
|
697
|
+
"node": ">=16.9.0"
|
|
698
|
+
}
|
|
699
|
+
}
|