offload/package.json

22 lines
476 B
JSON
Raw Normal View History

2024-10-25 21:19:39 +00:00
{
"name": "@nesterow/offload",
2024-10-26 17:36:47 +00:00
"version": "0.0.3",
2024-10-25 21:21:59 +00:00
"author": {
"name": "Anton Nesterov",
"url": "https://github.com/nesterow"
},
2024-10-25 21:19:39 +00:00
"description": "Offload heavy tasks to a separate thread using workers",
"module": "offload.ts",
"type": "module",
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
2024-10-25 21:21:59 +00:00
},
"scripts": {
"bundle": "bun build ./mod.ts --outfile=index.js",
"test": "bun test"
2024-10-25 21:19:39 +00:00
}
}