offload/package.json
2024-10-25 23:31:48 +02:00

22 lines
476 B
JSON

{
"name": "@nesterow/offload",
"version": "0.0.2",
"author": {
"name": "Anton Nesterov",
"url": "https://github.com/nesterow"
},
"description": "Offload heavy tasks to a separate thread using workers",
"module": "offload.ts",
"type": "module",
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"bundle": "bun build ./mod.ts --outfile=index.js",
"test": "bun test"
}
}