-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.36 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.36 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@monque/tsed",
"version": "1.7.0",
"description": "Ts.ED integration for Monque - A robust, type-safe MongoDB job queue for TypeScript",
"author": "Maurice de Bruyn <debruyn.maurice@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/ueberBrot/monque.git",
"directory": "packages/tsed"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/ueberBrot/monque/issues"
},
"homepage": "https://github.com/ueberBrot/monque#readme",
"sideEffects": false,
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"tsed",
"tsed-module",
"monque",
"mongodb",
"queue",
"job-queue",
"worker",
"background-jobs",
"cron",
"scheduler",
"typescript"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsdown",
"check:exports": "publint && attw --pack .",
"clean": "rimraf dist coverage .turbo",
"type-check": "tsc --noEmit",
"pretest": "bun run type-check",
"test": "vitest run",
"test:unit": "bun run type-check && vitest run --config vitest.unit.config.ts --coverage.enabled=false",
"test:integration": "bun run type-check && vitest run tests/integration --coverage.enabled=false",
"test:watch": "vitest",
"test:watch:unit": "vitest --config vitest.unit.config.ts",
"test:watch:integration": "vitest tests/integration",
"lint": "biome check ."
},
"peerDependencies": {
"@monque/core": "^1.7.1",
"@tsed/core": "^8.26.0",
"@tsed/di": "^8.26.0",
"@tsed/mongoose": "^8.26.0",
"mongodb": "^7.1.1"
},
"peerDependenciesMeta": {
"@tsed/mongoose": {
"optional": true
}
},
"devDependencies": {
"@monque/core": "workspace:*",
"@testcontainers/mongodb": "^11.13.0",
"@total-typescript/ts-reset": "^0.6.1",
"@tsed/core": "^8.26.0",
"@tsed/di": "^8.26.0",
"@tsed/mongoose": "^8.26.0",
"@tsed/platform-http": "^8.26.0",
"@tsed/testcontainers-mongo": "^8.26.0",
"@types/node": "^22.19.15",
"@vitest/coverage-v8": "^4.1.2",
"mongodb": "^7.1.1",
"testcontainers": "^11.13.0",
"tsdown": "^0.21.7",
"vitest": "^4.1.2"
}
}