{
  "name": "@cadence-mq/core",
  "type": "module",
  "version": "0.0.2",
  "description": "Modern, type-safe, and performant task queue for Node.js",
  "author": "Corentin Thomasset <corentinth@proton.me> (https://corentin.tech)",
  "license": "MIT",
  "homepage": "https://github.com/papra-hq/cadence-mq/tree/main/packages/core",
  "repository": {
    "type": "git",
    "url": "https://github.com/papra-hq/cadence-mq",
    "directory": "packages/core"
  },
  "bugs": {
    "url": "https://github.com/papra-hq/cadence-mq/issues"
  },
  "keywords": [
    "cadence",
    "cadence-mq",
    "job-scheduler",
    "job-queue",
    "task-queue",
    "tasks",
    "jobs"
  ],
  "exports": {
    ".": "./dist/index.js",
    "./package.json": "./package.json"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "dependencies": {
    "@corentinth/chisels": "^1.3.1",
    "nanoid": "^5.1.5"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^4.16.2",
    "@vitest/coverage-v8": "^3.2.4",
    "eslint": "^9.30.1",
    "tsdown": "^0.12.9",
    "typescript": "^5.8.3",
    "vitest": "^3.2.4"
  },
  "scripts": {
    "build": "tsdown",
    "build:watch": "tsdown --watch",
    "dev": "pnpm build:watch",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "test": "vitest run",
    "test:watch": "vitest watch"
  }
}