-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.19 KB
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
{
"name": "@piscina/priority-queue",
"version": "4.0.1",
"description": "A Priority TaskQueue implementation for Piscina",
"main": "./dist/src/index.js",
"exports": {
"import": "./dist/esm-wrapper.mjs",
"require": "./dist/src/index.js"
},
"types": "./dist/src/index.d.ts",
"scripts": {
"build": "tsc && gen-esm-wrapper . dist/esm-wrapper.mjs",
"lint": "eslint",
"test": "npm run lint && npm run build && npm run test-only",
"test-only": "node --import tsx --test test/*.ts",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/piscinajs/piscina-priority-queue"
},
"keywords": [
"piscina"
],
"author": "James M Snell <[email protected]>",
"contributors": [
"Anna Henningsen <[email protected]>",
"Matteo Collina <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^24.10.0",
"eslint": "^9.39.1",
"gen-esm-wrapper": "^1.1.1",
"neostandard": "^0.12.2",
"piscina": "^5.1.4",
"tsx": "^4.19.4",
"typescript": "^5.9.3"
},
"peerDependencies": {
"piscina": "^5.0.0"
},
"dependencies": {
"shuffled-priority-queue": "^2.1.0"
}
}