sidequest
Version:
Sidequest is a modern, scalable background job processor for Node.js applications.
52 lines • 1.25 kB
JSON
{
"name": "sidequest",
"version": "1.13.1",
"description": "Sidequest is a modern, scalable background job processor for Node.js applications.",
"keywords": [
"nodejs",
"javascript",
"typescript",
"queue",
"concurrency",
"background-jobs",
"distributed",
"background"
],
"homepage": "https://sidequestjs.com/",
"bugs": {
"url": "https://github.com/sidequestjs/sidequest/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sidequestjs/sidequest.git"
},
"funding": "https://github.com/sponsors/sidequestjs",
"packageManager": "yarn@4.9.2",
"engines": {
"node": ">=22.6.0"
},
"license": "LGPL-3.0-or-later",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"files": [
"dist"
],
"scripts": {
"build": "npx rollup -c",
"dev": "npx rollup -c -w",
"test:ci": "npx vitest run"
},
"dependencies": {
"@sidequest/backend": "1.13.1",
"@sidequest/core": "1.13.1",
"@sidequest/dashboard": "1.13.1",
"@sidequest/engine": "1.13.1"
}
}