-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 941 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 941 Bytes
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
{
"name": "taskwave",
"version": "0.0.4",
"license": "MIT",
"description": "Package to execute tasks on a worker pool to deal with a wave of CPU heavy tasks.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"multithreading",
"CPU heavy tasks",
"web workers",
"threads",
"parallel",
"calculations",
"performance",
"non-blocking",
"pool",
"worker pool"
],
"scripts": {
"build": "npm run compile",
"compile": "rm -rf dist/ && tsc -p ./",
"prepublishOnly": "npm run build",
"pretest": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/LucaCode/taskwave.git"
},
"files": [
"dist/**/*"
],
"author": {
"name": "Luca Scarignella",
"email": "lucacode1@gmail.com",
"url": "https://luca.scaringella.de"
},
"devDependencies": {
"typescript": "^4.9.5",
"@types/node": "^18.14.6"
}
}