{
  "name": "bun-threads",
  "version": "1.1.1",
  "author": "Taylor Reid",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/taylorsreid/bun-threadpool.git"
  },
  "module": "index.js",
  "devDependencies": {
    "@types/bun": "latest",
    "typedoc": "^0.28.14"
  },
  "peerDependencies": {
    "typescript": "^5.8.2"
  },
  "description": "Abstractions around Bun workers to enable working with them as promises.",
  "homepage": "https://taylorsreid.github.io/bun-threads/",
  "keywords": [
    "bun",
    "thread",
    "pool",
    "threadpool",
    "multi",
    "threading",
    "multithreading"
  ],
  "license": "MIT",
  "scripts": {
    "build": "bun build --entrypoints ./index.ts ./worker.ts --outdir ./dist --target bun --sourcemap=linked && tsc && rm dist/worker.d.ts && cp package.json dist/package.json && cp README.md dist/README.md && cp LICENSE dist/LICENSE",
    "typedoc": "typedoc index.ts --exclude \"scratch.ts\" --html docs"
  },
  "type": "module",
  "types": "index.d.ts"
}