blazerjob
Version:
TypeScript library for scheduling, executing, and managing asynchronous tasks (custom, HTTP) with a SQLite backend.
58 lines (57 loc) • 1.41 kB
JSON
{
"name": "blazerjob",
"version": "2.0.7",
"description": "TypeScript library for scheduling, executing, and managing asynchronous tasks (custom, HTTP) with a SQLite backend.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"blazerjob": "dist/bin/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/QuenumGerald/BlazerJob.git"
},
"keywords": [
"task scheduler",
"typescript",
"GNU",
"sqlite",
"http",
"automation",
"scheduler",
"job queue",
"cron",
"async",
"worker",
"task runner",
"background jobs",
"open source",
"batching"
],
"author": "Gérald Quenum <geraldquenum9@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/QuenumGerald/BlazerJob/issues"
},
"homepage": "https://github.com/QuenumGerald/BlazerJob#readme",
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.15.3",
"@types/node-fetch": "^2.6.12",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@fastify/formbody": "^8.0.2",
"better-sqlite3": "^11.9.1",
"dotenv": "^16.5.0",
"fastify": "^5.3.2",
"node-fetch": "^2.7.0"
}
}