UNPKG

@hyperflake/job-scheduler

Version:

A simple and effective job scheduling module for Node.js, designed to manage and execute tasks based on cron-like schedules. This module utilizes `node-schedule` for precise timing and flexibility, making it ideal for applications that require specific ti

39 lines (38 loc) 916 B
{ "name": "@hyperflake/job-scheduler", "version": "2.0.0", "description": "", "author": "Khan Cirhan", "types": "build/src/index.d.ts", "files": [ "*.md", "build" ], "exports": { ".": "./build/src/index.js" }, "scripts": { "dev": "nodemon playground.ts", "build": "npx tsc --p ./tsconfig.build.json", "prepublishOnly": "npm run build", "npmPublish": "npm publish --access public" }, "keywords": [ "nodejs", "job scheduler", "task scheduler", "cron", "node-schedule" ], "license": "ISC", "repository": { "type": "git", "url": "https://github.com/codecrafts-co/job-scheduler.git" }, "devDependencies": { "@types/node": "^20.12.12", "nodemon": "^3.1.4", "ts-node": "^10.9.2", "typescript": "^5.4.5" } }