-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 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
{
"name": "txob",
"description": "generic transactional outbox event processor with graceful shutdown and horizontal scalability",
"keywords": [
"DDD",
"outbox pattern",
"transactional outbox",
"event processor",
"graceful shutdown",
"microservices"
],
"author": "Dillon Streator <[email protected]>",
"homepage": "https://github.com/dillonstreator/txob",
"repository": {
"type": "git",
"url": "git://github.com/dillonstreator/txob.git"
},
"version": "0.0.21",
"license": "MIT",
"files": [
"dist",
"README.md"
],
"main": "dist/processor.js",
"types": "dist/processor.d.ts",
"exports": {
".": {
"default": "./dist/processor.js",
"types": "./dist/processor.d.ts"
},
"./pg": {
"default": "./dist/pg/client.js",
"types": "./dist/pg/client.d.ts"
},
"./mongodb": {
"default": "./dist/mongodb/client.js",
"types": "./dist/mongodb/client.d.ts"
}
},
"scripts": {
"build": "npm-run-all clean build:tsc",
"build:tsc": "tsc --build",
"prepublish": "yarn build",
"clean": "rimraf dist",
"nuke": "rimraf node_modules dist",
"test": "vitest",
"test:ci": "yarn test --run --coverage",
"prettier": "prettier -w ."
},
"dependencies": {
"retry": "^0.13.1"
},
"peerDependencies": {
"mongodb": "^6.0.0",
"pg": "^8.0.0"
},
"devDependencies": {
"@types/mongodb": "^4.0.7",
"@types/node": "^22.8.5",
"@types/pg": "^8.10.9",
"@types/retry": "^0.12.5",
"@vitest/coverage-v8": "^2.1.4",
"nodemon": "^3.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^2.1.4"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}