-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.3 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "@ai-zen/async-queue",
"version": "1.3.1",
"description": "AsyncQueue is a TypeScript class that provides a simple asynchronous queue implementation. It implements the `Symbol.asyncIterator` interface, allowing it to be used in `for-await-of` loops. This enables one or multiple consumers to process items in the queue asynchronously.",
"keywords": [
"async",
"queue",
"async-queue",
"typescript",
"asynciterator",
"iterator",
"for-await-of",
"concurrent",
"competing-consumers pattern"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"clean": "rimraf ./dist",
"prebuild": "npm run clean",
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "npm run build && cross-env NODE_OPTIONS=--experimental-vm-modules jest"
},
"author": "LZQCN",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ai-zen/async-queue.git"
},
"bugs": {
"url": "https://github.com/ai-zen/async-queue/issues"
},
"homepage": "https://github.com/ai-zen/async-queue",
"devDependencies": {
"@jest/globals": "^29",
"@types/jest": "^29",
"@types/node": "^20.14.11",
"cross-env": "^7.0.3",
"jest": "^29",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
}
}