-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.31 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
{
"name": "bullmq-zod",
"version": "0.1.1",
"description": "Type-safe BullMQ integration with Zod schema validation",
"keywords": [
"bullmq",
"zod",
"typescript",
"queue",
"validation",
"type-safe"
],
"author": "AprilNEA <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AprilNEA/bullmq-zod.git"
},
"bugs": {
"url": "https://github.com/AprilNEA/bullmq-zod/issues"
},
"homepage": "https://github.com/AprilNEA/bullmq-zod#readme",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./helper": {
"require": "./dist/helper.js",
"import": "./dist/helper.mjs",
"types": "./dist/helper.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"bullmq": "^5.0.0",
"zod": "^3.0.0"
},
"devDependencies": {
"bullmq": "^5.34.10",
"ioredis": "^5.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"vitest": "^3.0.2",
"zod": "^3.24.1"
},
"engines": {
"node": ">=16.0.0"
}
}