From c28eb7f28dfaa8d3fdc540c4bcc306a3a8b9d6f8 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Tue, 27 May 2025 13:18:18 +0200 Subject: [PATCH] chore(config): add exports field to module metadata - Introduces an `exports` field to map module entry points --- deno.jsonc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/deno.jsonc b/deno.jsonc index d809cd6..99e1327 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -1,6 +1,9 @@ { "name": "@0xmax42/http-kernel", "description": "A simple HTTP kernel for Deno", + "exports": { + "./mod.ts": "./src/mod.ts" + }, "tasks": { "test": "deno test --allow-net --allow-env --unstable-kv --allow-read --allow-write --coverage **/__tests__/*.test.ts", "test:watch": "deno test --watch --allow-net --allow-env --unstable-kv --allow-read --allow-write **/__tests__/*.test.ts"