-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.46 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.46 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
{
"name": "tinypool",
"type": "module",
"version": "2.1.0",
"packageManager": "pnpm@9.0.6",
"description": "A minimal and tiny Node.js Worker Thread Pool implementation, a fork of piscina, but with fewer features",
"license": "MIT",
"homepage": "https://github.com/tinylibs/tinypool#readme",
"repository": {
"type": "git",
"url": "https://github.com/tinylibs/tinypool.git"
},
"bugs": {
"url": "https://github.com/tinylibs/tinypool/issues"
},
"keywords": [
"fast",
"worker threads",
"thread pool"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": "^20.0.0 || >=22.0.0"
},
"scripts": {
"test": "vitest",
"bench": "vitest bench",
"dev": "tsdown --watch ./src",
"build": "tsdown",
"publish": "clean-publish",
"lint": "eslint --max-warnings=0",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^20.12.8",
"clean-publish": "^3.4.4",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^53.0.0",
"prettier": "^3.3.2",
"tsdown": "^0.11.3",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.0",
"vite": "^5.2.11",
"vitest": "^4.0.1"
}
}