diff --git a/lib/index.cjs b/lib/index.cjs index 5252c893..d7cbf089 100644 --- a/lib/index.cjs +++ b/lib/index.cjs @@ -4,4 +4,4 @@ const { resolve } = require('node:path'); const uvPath = resolve(__dirname, '..', 'dist'); -module.exports = uvPath; +exports.uvPath = uvPath; diff --git a/lib/index.d.cts b/lib/index.d.cts index bec32500..93a7c61d 100644 --- a/lib/index.d.cts +++ b/lib/index.d.cts @@ -1,3 +1,3 @@ declare const uvPath: string; -export = uvPath; +export { uvPath };