{ "name": "piscina", "version": "5.1.4", "description": "A fast, efficient Node.js Worker Thread Pool implementation", "main": "./dist/main.js", "types": "./dist/index.d.ts", "exports": { "types": "./dist/index.d.ts", "import": "./dist/esm-wrapper.mjs", "require": "./dist/main.js" }, "engines": { "node": ">=20.x" }, "scripts": { "build": "tsc && gen-esm-wrapper . dist/esm-wrapper.mjs", "lint": "eslint", "test": "node scripts/run-tests.js --pattern='test/**/*test.ts'", "test:ci": "npm run lint && npm run build && npm run test:coverage", "test:coverage": "node scripts/run-tests.js --coverage --pattern='test/**/*test.ts'", "prepack": "npm run build", "benchmark": "node --allow-natives-syntax benchmark/index.js --scope all", "benchmark:ci": "node --allow-natives-syntax benchmark/index.js --scope all --reporter json | jq '.[] | .name, .opsSec'", "benchmark:simple": "node --allow-natives-syntax benchmark/index.js --scope simple:all", "benchmark:simple:default": "node --allow-natives-syntax benchmark/index.js --scope simple", "benchmark:simple:async": "node --allow-natives-syntax benchmark/index.js --scope simple:async", "benchmark:startup": "node --allow-natives-syntax benchmark/index.js --scope startup", "benchmark:queue": "node --allow-natives-syntax benchmark/index.js --scope queue" }, "repository": { "type": "git", "url": "git+https://github.com/piscinajs/piscina.git" }, "keywords": [ "fast", "worker threads", "thread pool", "wade wilson" ], "author": "James M Snell ", "contributors": [ "Anna Henningsen ", "Matteo Collina ", "Carlos Fuentes " ], "license": "MIT", "devDependencies": { "@types/node": "^22.4.1", "abort-controller": "^3.0.0", "bench-node": "^0.7.0", "concat-stream": "^2.0.0", "eslint": "^9.16.0", "gen-esm-wrapper": "^1.1.1", "glob": "^11.0.2", "neostandard": "^0.12.0", "tsx": "^4.20.3", "typescript": "5.8.3" }, "optionalDependencies": { "@napi-rs/nice": "^1.0.4" }, "bugs": { "url": "https://github.com/piscinajs/piscina/issues" }, "homepage": "https://github.com/piscinajs/piscina#readme", "directories": { "example": "examples", "test": "test" } }