@sidequest/core
Version:
@sidequest/core is the core package of SideQuest, a distributed background job queue for Node.js and TypeScript applications.
48 lines • 1.21 kB
JSON
{
"name": "@sidequest/core",
"version": "1.2.0",
"description": "@sidequest/core is the core package of SideQuest, a distributed background job queue for Node.js and TypeScript 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",
"directory": "packages/core"
},
"funding": "https://github.com/sponsors/sidequestjs",
"packageManager": "yarn@4.9.2",
"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"
},
"license": "LGPL-3.0-or-later",
"dependencies": {
"safe-stable-stringify": "^2.5.0",
"winston": "^3.17.0"
}
}