1
0
mirror of https://github.com/dzeiocom/libs.git synced 2025-06-12 19:09:18 +00:00

Added Queue System

This commit is contained in:
2020-07-02 16:58:30 +02:00
parent a0d210acb6
commit dd8515cc9b
5 changed files with 89 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{
"name": "@dzeio/queue",
"version": "1.0.0",
"description": "My Personnal Promise Queue System",
"repository": {
"type": "git",
"url": "https://github.com/dzeiocom/libs.git",
"directory": "packages/Queue"
},
"author": "Aviortheking",
"license": "MIT",
"main": "./dist/Queue.js",
"types": "./dist/Queue.d.ts",
"devDependencies": {
"typescript": "^3.9.5"
},
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsc"
},
"dependencies": {
"@dzeio/logger": "^1.1.1"
}
}