{
  "name": "@convex-dev/workpool",
  "description": "A Convex component for managing async work.",
  "repository": "github:get-convex/workpool",
  "homepage": "https://github.com/get-convex/workpool#readme",
  "bugs": {
    "email": "support@convex.dev",
    "url": "https://github.com/get-convex/workpool/issues"
  },
  "version": "0.4.6",
  "license": "Apache-2.0",
  "keywords": [
    "convex",
    "queue",
    "pool",
    "component",
    "async",
    "work"
  ],
  "type": "module",
  "scripts": {
    "dev": "run-p -r 'dev:*'",
    "dev:backend": "convex dev --typecheck-components",
    "dev:frontend": "cd example && vite --clearScreen false",
    "dev:build": "chokidar 'tsconfig*.json' 'src/**/*.ts' -i '**/*.test.ts' -c 'npm run build:codegen' --initial",
    "predev": "path-exists .env.local || (npm run build && convex dev --once)",
    "build": "tsc --project ./tsconfig.build.json",
    "build:codegen": "npx convex codegen --component-dir ./src/component && npm run build",
    "build:clean": "rm -rf dist *.tsbuildinfo && npm run build:codegen",
    "typecheck": "tsc --noEmit && tsc -p example && tsc -p example/convex",
    "lint": "eslint .",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "all": "run-p -r 'dev:*' 'test:watch'",
    "test": "vitest run --typecheck",
    "test:watch": "vitest --typecheck --clearScreen false",
    "test:debug": "vitest --inspect-brk --no-file-parallelism",
    "test:coverage": "vitest run --coverage --coverage.reporter=text",
    "preversion": "npm ci && npm run build:clean && run-p test lint typecheck",
    "alpha": "npm version prerelease --preid alpha && npm publish --tag alpha && git push --follow-tags",
    "release": "npm version patch && npm publish && git push --follow-tags",
    "version": "(npm whoami || npm login) && vim -c 'normal o' -c 'normal o## '$npm_package_version CHANGELOG.md && prettier -w CHANGELOG.md && git add CHANGELOG.md"
  },
  "files": [
    "dist",
    "src"
  ],
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/client/index.d.ts",
      "default": "./dist/client/index.js"
    },
    "./test": "./src/test.ts",
    "./_generated/component.js": {
      "types": "./dist/component/_generated/component.d.ts"
    },
    "./convex.config": {
      "types": "./dist/component/convex.config.d.ts",
      "default": "./dist/component/convex.config.js"
    },
    "./convex.config.js": {
      "types": "./dist/component/convex.config.d.ts",
      "default": "./dist/component/convex.config.js"
    }
  },
  "peerDependencies": {
    "convex": "^1.31.7",
    "convex-helpers": "^0.1.94"
  },
  "devDependencies": {
    "@edge-runtime/vm": "5.0.0",
    "@eslint/eslintrc": "3.3.3",
    "@eslint/js": "10.0.1",
    "@types/node": "24.10.11",
    "@types/react": "19.2.13",
    "@types/react-dom": "19.2.3",
    "@vitejs/plugin-react": "5.1.3",
    "@vitest/coverage-v8": "4.0.18",
    "chokidar-cli": "3.0.0",
    "convex": "1.34.0",
    "convex-helpers": "0.1.111",
    "convex-test": "0.0.41",
    "cpy-cli": "7.0.0",
    "eslint": "10.0.2",
    "eslint-plugin-react-hooks": "7.1.0-canary-3f0b9e61-20260317",
    "eslint-plugin-react-refresh": "0.5.0",
    "globals": "17.3.0",
    "npm-run-all2": "8.0.4",
    "path-exists-cli": "2.0.0",
    "pkg-pr-new": "0.0.63",
    "prettier": "3.8.1",
    "react": "19.2.4",
    "react-dom": "19.2.4",
    "typescript": "5.9.3",
    "typescript-eslint": "8.56.1",
    "vite": "7.3.1",
    "vitest": "4.0.18"
  },
  "types": "./dist/client/index.d.ts",
  "module": "./dist/client/index.js"
}
