mirror of
https://github.com/nesterow/offload.git
synced 2024-11-13 21:54:04 +00:00
22 lines
476 B
JSON
22 lines
476 B
JSON
{
|
|
"name": "@nesterow/offload",
|
|
"version": "0.0.4",
|
|
"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"
|
|
}
|
|
}
|