chore: update package.json to include pnpm configuration

- Added pnpm configuration to specify only built dependencies for esbuild in package.json, enhancing dependency management.
This commit is contained in:
Mauricio Siu
2026-04-15 21:02:39 -06:00
parent c073a037b1
commit 52b6c8d735

View File

@@ -52,5 +52,8 @@
"test": "vitest run",
"publish": "npm publish"
},
"types": "dist/index.d.ts"
"types": "dist/index.d.ts",
"pnpm": {
"onlyBuiltDependencies": ["esbuild"]
}
}