File size: 1,879 Bytes
311cc15
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
  "name": "@sapphire/async-queue",
  "version": "1.5.2",
  "description": "Sequential asynchronous lock-based queue for promises",
  "author": "@sapphire",
  "license": "MIT",
  "main": "dist/cjs/index.cjs",
  "module": "dist/esm/index.mjs",
  "browser": "dist/iife/index.global.js",
  "unpkg": "dist/iife/index.global.js",
  "types": "dist/cjs/index.d.cts",
  "exports": {
    "import": {
      "types": "./dist/esm/index.d.mts",
      "default": "./dist/esm/index.mjs"
    },
    "require": {
      "types": "./dist/cjs/index.d.cts",
      "default": "./dist/cjs/index.cjs"
    },
    "browser": "./dist/iife/index.global.js"
  },
  "sideEffects": false,
  "homepage": "https://github.com/sapphiredev/utilities/tree/main/packages/async-queue",
  "scripts": {
    "test": "vitest run",
    "lint": "eslint src tests --ext ts --fix -c ../../.eslintrc",
    "docs": "typedoc-json-parser",
    "build": "tsup && yarn build:rename-cjs-index",
    "build:rename-cjs-index": "node ../../scripts/rename-cjs-index.mjs",
    "prepack": "yarn build",
    "bump": "cliff-jumper",
    "check-update": "cliff-jumper --dry-run"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sapphiredev/utilities.git",
    "directory": "packages/async-queue"
  },
  "files": [
    "dist/"
  ],
  "engines": {
    "node": ">=v14.0.0",
    "npm": ">=7.0.0"
  },
  "keywords": [
    "@sapphire/async-queue",
    "bot",
    "typescript",
    "ts",
    "yarn",
    "discord",
    "sapphire",
    "standalone"
  ],
  "bugs": {
    "url": "https://github.com/sapphiredev/utilities/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@favware/cliff-jumper": "^2.2.3",
    "@vitest/coverage-v8": "^1.2.1",
    "tsup": "^8.0.1",
    "typedoc": "^0.25.7",
    "typedoc-json-parser": "^9.0.1",
    "typescript": "^5.3.3",
    "vitest": "^1.2.1"
  }
}