-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
executable file
·73 lines (73 loc) · 2.08 KB
/
package.json
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
{
"name": "multithreading",
"version": "0.2.1",
"description": "⚡ Multithreading functions in JavaScript to speedup heavy workloads, designed to feel like writing vanilla functions.",
"author": "Walter van der Giessen <[email protected]>",
"homepage": "https://multithreading.io",
"license": "MIT",
"keywords": [
"multithreading",
"threads",
"webworkers",
"parallel",
"concurrent",
"concurrency",
"web-workers",
"worker-threads"
],
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"main": "./dist/index.js",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/W4G1/multithreading.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-swc": "^0.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^20.11.26",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"rimraf": "^5.0.5",
"rollup": "^4.13.0",
"rollup-plugin-ts": "^3.4.5",
"tslib": "^2.6.2",
"typescript": "^5.4.2",
"uuid": "^9.0.1"
},
"scripts": {
"build:worker": "rimraf .temp && rollup -c rollup.config.worker.js --configPlugin @rollup/plugin-swc",
"build": "npm run build:worker && rollup -c rollup.config.js --configPlugin @rollup/plugin-swc && rimraf .temp",
"dev": "nodemon",
"prepublishOnly": "npm run build",
"test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest"
},
"bugs": {
"url": "https://github.com/W4G1/multithreading/issues"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.13.0"
}
}