From 7109e341df3e507f2bd0225dce0a03e6eced4c5f Mon Sep 17 00:00:00 2001 From: Derek Barrera Date: Mon, 18 May 2026 13:55:37 -0400 Subject: [PATCH] fix: use node cjs exports for eas sdk --- package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package.json b/package.json index 177bd74..26d90a4 100644 --- a/package.json +++ b/package.json @@ -17,11 +17,13 @@ "exports": { ".": { "types": "./dist/index.d.ts", + "node": "./dist/index.cjs", "import": "./dist/index.js", "require": "./dist/index.cjs" }, "./testing": { "types": "./dist/testing.d.ts", + "node": "./dist/testing.cjs", "import": "./dist/testing.js", "require": "./dist/testing.cjs" }