-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.04 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.04 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
99
100
101
102
{
"name": "txob",
"description": "transactional outbox event processor with graceful shutdown and horizontal scalability",
"keywords": [
"outbox pattern",
"transactional outbox",
"event processor",
"DDD",
"microservices",
"graceful shutdown",
"horizontal scalability",
"at-least-once",
"at-least-once delivery"
],
"author": "Dillon Streator <dillonstreator@gmail.com>",
"homepage": "https://github.com/osbytes/txob",
"repository": {
"type": "git",
"url": "git://github.com/osbytes/txob.git"
},
"version": "0.4.0",
"type": "module",
"license": "MIT",
"files": [
"dist",
"README.md"
],
"main": "./dist/cjs/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/cjs/index.js"
},
"./pg": {
"types": "./dist/pg/client.d.ts",
"import": "./dist/pg/client.js",
"require": "./dist/cjs/pg/client.js"
},
"./mongodb": {
"types": "./dist/mongodb/client.d.ts",
"import": "./dist/mongodb/client.js",
"require": "./dist/cjs/mongodb/client.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "npm-run-all clean build:esm build:cjs copy:files",
"build:esm": "tsc --build",
"build:cjs": "tsc --build tsconfig.cjs.json",
"copy:files": "copyfiles package.json README.md LICENSE dist",
"prepublishOnly": "yarn build",
"clean": "rimraf dist tsconfig.tsbuildinfo tsconfig.cjs.tsbuildinfo",
"nuke": "rimraf node_modules dist",
"test": "vitest",
"test:ci": "yarn test --run --coverage",
"format": "prettier -w ."
},
"dependencies": {
"@standard-schema/spec": "^1.1.0",
"p-limit": "^7.2.0",
"p-queue": "^9.0.1",
"throttle-debounce": "^5.0.2"
},
"peerDependencies": {
"mongodb": "^7.0.0",
"pg": "^8.0.0"
},
"devDependencies": {
"@types/mongodb": "^4.0.7",
"@types/node": "^25.0.3",
"@types/pg": "^8.10.9",
"@types/throttle-debounce": "^5.0.2",
"@vitest/coverage-v8": "^4.0.15",
"copyfiles": "^2.4.1",
"mongodb": "^7.0.0",
"nodemon": "^3.0.2",
"npm-run-all": "^4.1.5",
"pg": "^8.0.0",
"prettier": "^3.1.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"vitest": "^4.0.15"
},
"resolutions": {
"copyfiles/minimatch": "3.1.5",
"copyfiles/**/minimatch": "3.1.5",
"copyfiles/**/brace-expansion": "1.1.14",
"copyfiles/minimatch/brace-expansion": "1.1.14",
"copyfiles/**/minimatch/brace-expansion": "1.1.14",
"nodemon/chokidar/anymatch/picomatch": "2.3.2",
"nodemon/chokidar/readdirp/picomatch": "2.3.2",
"npm-run-all/cross-spawn": "6.0.6",
"npm-run-all/minimatch": "3.1.5",
"npm-run-all/**/brace-expansion": "1.1.14",
"npm-run-all/minimatch/brace-expansion": "1.1.14",
"ts-node/diff": "4.0.4"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}