@cadence-mq/core
Version:
Modern, type-safe, and performant task queue for Node.js
60 lines • 1.57 kB
JSON
{
"name": "@cadence-mq/core",
"type": "module",
"version": "0.2.1",
"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",
"./utils/time": "./dist/utils/time.js",
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"@corentinth/chisels": "^1.3.1",
"@paralleldrive/cuid2": "^2.2.2",
"@standard-schema/spec": "^1.0.0",
"cron-parser": "^5.3.0"
},
"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",
"valibot": "^1.1.0",
"vitest": "^3.2.4",
"zod": "^4.0.5"
},
"scripts": {
"build": "tsdown",
"build:watch": "tsdown --watch",
"dev": "pnpm build:watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"typecheck": "tsc --noEmit"
}
}