-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.66 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.66 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "bee-threads",
"version": "4.0.12",
"description": "Handle threading as promises. Run CPU-intensive code in worker threads with a simple fluent API.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "npm run build && node --import tsx test.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"thread",
"threads",
"threading",
"multithreading",
"multi-threading",
"multithread",
"worker",
"workers",
"worker_threads",
"worker-threads",
"pool",
"thread-pool",
"threadpool",
"parallel",
"parallelism",
"concurrency",
"concurrent",
"async",
"promise",
"cpu",
"cpu-intensive",
"offload",
"background",
"non-blocking",
"turbo",
"map",
"filter",
"reduce",
"array",
"batch",
"processing",
"fluent",
"typescript",
"zero-dependencies"
],
"author": "samsantosb",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/samsantosb/BeeThreads.git"
},
"bugs": {
"url": "https://github.com/samsantosb/BeeThreads/issues"
},
"homepage": "https://github.com/samsantosb/BeeThreads#readme",
"engines": {
"node": ">=14.18.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsx": "^4.21.0",
"typescript": "^5.3.0"
}
}