-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"name": "typed-worker-threads",
"repository": {
"type": "git",
"url": "https://github.com/lobotomoe/typed-worker-threads.git"
},
"version": "0.4.0",
"description": "Type-safe wrapper for Node.js Worker Threads",
"type": "module",
"scripts": {
"prepack": "npm run build",
"clean": "rimraf lib/",
"build": "rimraf lib/ && tsup src/index.ts --format cjs,esm --dts --clean",
"watch": "npm run build -- --watch src",
"prepublishOnly": "npm run build"
},
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"require": "./lib/index.cjs",
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"keywords": [
"worker",
"threads",
"typed",
"type-safe"
],
"author": "Alex Kraiz",
"license": "BSD-3-Clause",
"homepage": "https://github.com/lobotomoe/typed-worker-threads#readme",
"files": [
"lib/**/*"
],
"devDependencies": {
"@types/node": "^20.1.0",
"@typescript-eslint/eslint-plugin": ">=5.57.1",
"@typescript-eslint/parser": ">=5.57.1",
"eslint": ">=8.37.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.57.0",
"rimraf": "^4.4.1",
"tsup": "^6.7.0",
"typescript": "^5.0.3"
}
}