-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.22 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.22 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
47
48
49
50
51
52
53
54
{
"name": "@fideus-labs/worker-pool",
"version": "1.0.0",
"description": "A Web Worker pool with bounded concurrency. ChunkQueue-compatible add/onIdle and batch runTasks/cancel interfaces.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"LICENSE.txt"
],
"scripts": {
"build": "tsc",
"dev": "vite --config vite.config.ts",
"bench": "vite --config benchmark/vite.config.ts benchmark",
"test": "playwright test",
"test:ui": "playwright test --ui"
},
"repository": {
"type": "git",
"url": "https://github.com/fideus-labs/worker-pool.git"
},
"keywords": [
"web-worker",
"worker-pool",
"concurrency",
"chunk-queue",
"zarrita",
"itk-wasm"
],
"author": "Fideus Labs LLC <info@fideus.io>",
"license": "MIT",
"sideEffects": false,
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@zarrita/storage": "^0.1.4",
"chart.js": "^4.5.1",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"zarrita": "^0.6.1"
}
}