{
  "name": "@watchable/nevermore",
  "version": "1.0.0",
  "description": "Rate limits and concurrency using generators of promiseFactories",
  "keywords": [
    "limit",
    "throttle",
    "concurrency",
    "rate-limit",
    "retry",
    "backoff",
    "scheduler",
    "queue",
    "async",
    "Promise",
    "task",
    "job",
    "batch processing",
    "watchable",
    "nevermore"
  ],
  "homepage": "https://github.com/cefn/watchable/tree/main/packages/nevermore#readme",
  "bugs": {
    "url": "https://github.com/cefn/watchable/issues?q=is%3Aissue+is%3Aopen+label%3Anevermore",
    "email": "watchable@cefn.com"
  },
  "repository": {
    "url": "https://github.com/cefn/watchable.git",
    "directory": "packages/nevermore"
  },
  "license": "MIT",
  "author": "Cefn Hoile <github.com@cefn.com> (https://cefn.com)",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "README.md",
    "dist",
    "src"
  ],
  "scripts": {
    "build": "wireit",
    "lint": "wireit",
    "test": "wireit",
    "test:watch": "wireit"
  },
  "devDependencies": {
    "@vitest/coverage-v8": "^1.2.1",
    "typescript": "^5.4.5",
    "wireit": "^0.14.4",
    "vite": "^5.2.11",
    "vitest": "^1.6.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "wireit": {
    "test:watch": {
      "command": "vitest",
      "dependencies": [
        "build"
      ],
      "files": [
        "src/**/*",
        "test/**/*",
        "tsconfig.json",
        "tsconfig.test.json",
        "vite.config.ts"
      ]
    },
    "test": {
      "dependencies": [
        "build"
      ],
      "command": "vitest run --reporter verbose --isolate",
      "files": [
        "src/**/*",
        "test/**/*",
        "tsconfig.json",
        "tsconfig.test.json",
        "vite.config.ts"
      ],
      "output": [
        "./coverage"
      ]
    },
    "build": {
      "dependencies": [
        "../../packages/queue:build",
        "../../packages/unpromise:build"
      ],
      "command": "tsc --build && vite build",
      "files": [
        "src/**/*",
        "tsconfig.json",
        "vite.config.ts",
        "README.md"
      ],
      "output": [
        "./dist"
      ]
    },
    "lint": {
      "command": "eslint .",
      "files": [
        "**/*.js",
        "**/*.jsx",
        "**/*.ts",
        "**/*.jsx",
        "!dist/**/*",
        "!coverage/**/*"
      ],
      "output": [],
      "dependencies": [
        "build"
      ]
    }
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs",
      "default": "./dist/index.cjs"
    }
  },
  "sideEffects": false,
  "dependencies": {
    "@watchable/queue": "^1.0.0",
    "@watchable/unpromise": "^1.0.2"
  }
}