UNPKG

fast-worker-channel

Version:

High-performance communication channels for Node.js worker threads

36 lines 817 B
{ "name": "fast-worker-channel", "version": "1.0.0", "description": "High-performance communication channels for Node.js worker threads", "main": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist/**/*", "README.md", "LICENSE" ], "scripts": { "build": "tsc", "build:watch": "tsc --watch", "clean": "rimraf dist", "prepublish": "npm run clean && npm run build", "benchmark": "npm run build && node ./dist/benchmark", "test": "npm run build && node ./dist/test" }, "keywords": [ "worker-threads", "shared-array-buffer", "ipc", "performance" ], "engines": { "node": ">=14.0.0" }, "dependencies": { "@msgpack/msgpack": "^3.0.0" }, "devDependencies": { "typescript": "^5.0.0", "@types/node": "^20.0.0" } }