diff --git a/package.json b/package.json index c517787..b2c647d 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,9 @@ "packageManager": "yarn@3.5.0", "version": "2.6.1", "description": "A complete, customizable, typesafe, & reactive framework for discord bots.", + "main": "./dist/esm/index.mjs", + "module": "./dist/cjs/index.cjs", + "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/esm/index.mjs", diff --git a/tsup.config.js b/tsup.config.js index f347d7f..f9e89cf 100644 --- a/tsup.config.js +++ b/tsup.config.js @@ -50,4 +50,5 @@ export default defineConfig([ }, ...shared, }, + ]);