diff --git a/bun.lockb b/bun.lockb index 831c287..26de14f 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 9f8e335..faa914c 100644 --- a/package.json +++ b/package.json @@ -3,14 +3,14 @@ "version": "2.1.5", "private": false, "description": "The kernel for UbiquityOS.", - "module": "dist/esm/index.js", + "module": "dist/index.mjs", "main": "dist/index.js", "typings": "dist/index.d.ts", "exports": { ".": { - "require": "./dist/index.js", - "import": "./dist/esm/index.js", - "types": "./dist/index.d.ts" + "types": "./dist/index.d.ts", + "require": "./dist/index.js", + "import": "./dist/index.mjs" } }, "files": [ @@ -58,8 +58,8 @@ "@octokit/plugin-retry": "7.1.1", "@octokit/plugin-throttling": "9.3.1", "@octokit/rest": "^21.0.2", - "@octokit/types": "13.5.0", - "@octokit/webhooks": "13.2.8", + "@octokit/types": "^13.5.0", + "@octokit/webhooks": "13.3.0", "@octokit/webhooks-types": "7.5.1", "@sinclair/typebox": "0.32.35", "@ubiquity-os/ubiquity-os-logger": "^1.3.2", diff --git a/tsup.config.ts b/tsup.config.ts index 44c6c25..b183352 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -8,5 +8,5 @@ export default defineConfig({ sourcemap: false, clean: true, dts: true, - legacyOutput: true, + legacyOutput: false, });