From ac01dd41e840daf71a1385e28fea3799edbcfb4e Mon Sep 17 00:00:00 2001 From: Erik Onarheim Date: Sun, 17 Nov 2024 20:49:46 -0600 Subject: [PATCH] feat: add initial jsr publish --- deno.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 deno.json diff --git a/deno.json b/deno.json new file mode 100644 index 000000000..5e668d21b --- /dev/null +++ b/deno.json @@ -0,0 +1,10 @@ +{ + "name": "@excaliburjs/excalibur", + "version": "0.0.1", + "exports": { + ".": "./build/esm/excalibur.js" + }, + "publish": { + "include": ["LICENSE.md", "README.md", "./build/esm/**/*.*"] + } +}