UNPKG

easy-action-queue

Version:

A lightweight library to queue and manage actions with configurable concurrency, supporting synchronous, asynchronous, and observable actions.

53 lines (52 loc) 1.34 kB
{ "name": "easy-action-queue", "version": "2.0.4", "description": "A lightweight library to queue and manage actions with configurable concurrency, supporting synchronous, asynchronous, and observable actions.", "main": "ActionQueue.js", "types": "ActionQueue.d.ts", "module": "ActionQueue.esm.js", "scripts": { "build": "tsc", "serve": "webpack-dev-server ./demo/main.ts", "test": "jest", "prepare": "npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/KiranShakya/easy-action-queue.git" }, "author": "Kiran Shakya", "license": "MIT", "bugs": { "url": "https://github.com/KiranShakya/easy-action-queue/issues" }, "homepage": "https://github.com/KiranShakya/easy-action-queue#readme", "dependencies": { "rxjs": "^7.8.0" }, "peerDependencies": { "rxjs": "^7.8.0" }, "devDependencies": { "@types/jest": "^29.5.14", "copyfiles": "^2.4.1", "html-webpack-plugin": "^5.5.1", "jest": "^29.7.0", "ts-jest": "^29.2.5", "ts-loader": "^9.4.2", "typescript": "^5.7.2", "webpack": "^5.80.0", "webpack-cli": "^5.0.1", "webpack-dev-server": "^4.13.3" }, "keywords": [ "Easy", "Action", "Queue", "Concurrency", "Asynchronous", "Observable", "Task Management", "RxJS" ] }