From 0b45b1bf8cda97d6d86cd880909109997f32b834 Mon Sep 17 00:00:00 2001 From: zeevdr Date: Sun, 24 May 2026 16:00:12 +0300 Subject: [PATCH] build: add sideEffects false to package.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Enables bundlers (webpack, rollup, esbuild) to tree-shake unused exports from the SDK. Audited all source files — no top-level side effects present. Co-Authored-By: Claude Closes #57 --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 0f4257c..3e87cfa 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,7 @@ }, "./package.json": "./package.json" }, + "sideEffects": false, "files": [ "dist", "LICENSE",