-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.89 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
74
{
"name": "@unlib-js/unreliable",
"version": "2.0.0",
"description": "Management wrapper for unreliable resources, e.g., another process",
"main": "build/index.cjs",
"module": "build/index.js",
"type": "module",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js",
"require": "./build/index.cjs"
},
"./Daemon.h": {
"types": "./build/Daemon.h.d.ts",
"import": "./build/Daemon.h.js",
"require": "./build/Daemon.h.cjs"
},
"./Daemon": {
"types": "./build/Daemon.d.ts",
"import": "./build/Daemon.js",
"require": "./build/Daemon.cjs"
},
"./disposable-events": {
"types": "./build/disposable-events.d.ts",
"import": "./build/disposable-events.js",
"require": "./build/disposable-events.cjs"
},
"./stopOnExit": {
"types": "./build/stopOnExit.d.ts",
"import": "./build/stopOnExit.js",
"require": "./build/stopOnExit.cjs"
},
"./Unreliable.h": {
"types": "./build/Unreliable.h.d.ts",
"import": "./build/Unreliable.h.js",
"require": "./build/Unreliable.h.cjs"
},
"./Unreliable": {
"types": "./build/Unreliable.d.ts",
"import": "./build/Unreliable.js",
"require": "./build/Unreliable.cjs"
}
},
"files": [
"build"
],
"scripts": {
"test": "vitest",
"gen-exports": "tsx ./scripts/gen-exports.ts",
"build": "tsup",
"prepublish": "tsup"
},
"keywords": [
"unreliable"
],
"author": "Untitled",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.7.7",
"@unlib-js/event-barrier": "^2.0.1",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"packageManager": "[email protected]",
"repository": {
"url": "https://github.com/unlib-js/unreliable.git"
},
"peerDependencies": {
"@unlib-js/event-barrier": "^2.0.1"
}
}