From 52b6c8d73517b7d491500e81d9949204bf86b114 Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Wed, 15 Apr 2026 21:02:39 -0600 Subject: [PATCH] chore: update package.json to include pnpm configuration - Added pnpm configuration to specify only built dependencies for esbuild in package.json, enhancing dependency management. --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index c951375..4d2239e 100644 --- a/package.json +++ b/package.json @@ -52,5 +52,8 @@ "test": "vitest run", "publish": "npm publish" }, - "types": "dist/index.d.ts" + "types": "dist/index.d.ts", + "pnpm": { + "onlyBuiltDependencies": ["esbuild"] + } }