This commit is contained in:
Sunil Pai 2025-03-24 10:00:45 +00:00
commit 8e1865f4b0
4 changed files with 136 additions and 124 deletions

View file

@ -34,5 +34,21 @@
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"tsup": {
"entry": [
"src/cli/client.ts",
"src/cli/proxy.ts",
"src/react/index.ts"
],
"format": [
"esm"
],
"dts": true,
"clean": true,
"outDir": "dist",
"external": [
"react"
]
}
}