-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
104 lines (104 loc) · 2.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
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
103
104
{
"name": "@event-driven-io/pongo",
"version": "0.16.0",
"description": "Pongo - Mongo with strong consistency on top of Postgres",
"type": "module",
"scripts": {
"build": "tsup",
"build:ts": "tsc",
"build:ts:watch": "tsc --watch",
"test": "run-s test:unit test:int test:e2e",
"test:unit": "glob -c \"node --import tsx --test\" **/*.unit.spec.ts",
"test:int": "glob -c \"node --import tsx --test\" **/*.int.spec.ts",
"test:e2e": "glob -c \"node --import tsx --test\" **/*.e2e.spec.ts",
"test:watch": "node --import tsx --test --watch",
"test:unit:watch": "glob -c \"node --import tsx --test --watch\" **/*.unit.spec.ts",
"test:int:watch": "glob -c \"node --import tsx --test --watch\" **/*.int.spec.ts",
"test:e2e:watch": "glob -c \"node --import tsx --test --watch\" **/*.e2e.spec.ts",
"cli:sql:print": "tsx src/cli.ts migrate sql --collection users",
"cli:migrate:dryRun": "tsx src/cli.ts migrate run --config src/e2e/cli-config.ts -cs postgresql://postgres:postgres@localhost:5432/postgres",
"cli:config:print": "tsx src/cli.ts config sample --print",
"cli:config:generate": "tsx src/cli.ts config sample --generate --file ./pongoConfig.ts "
},
"repository": {
"type": "git",
"url": "git+https://github.com/event-driven-io/Pongo.git"
},
"keywords": [
"Event Sourcing"
],
"author": "Oskar Dudycz",
"bugs": {
"url": "https://github.com/event-driven-io/Pongo/issues"
},
"homepage": "https://event-driven-io.github.io/Pongo/",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./shim": {
"import": {
"types": "./dist/shim.d.ts",
"default": "./dist/shim.js"
},
"require": {
"types": "./dist/shim.d.cts",
"default": "./dist/shim.cjs"
}
},
"./cli": {
"import": {
"types": "./dist/cli.d.ts",
"default": "./dist/cli.js"
},
"require": {
"types": "./dist/cli.d.cts",
"default": "./dist/cli.cjs"
}
}
},
"typesVersions": {
"*": {
".": [
"./dist/index.d.ts"
],
"shim": [
"./dist/shim.d.ts"
],
"cli": [
"./dist/cli.d.ts"
]
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"pongo": "./dist/cli.js"
},
"peerDependencies": {
"@event-driven-io/dumbo": "0.12.0",
"@types/mongodb": "^4.0.7",
"@types/pg": "^8.11.6",
"@types/uuid": "^10.0.0",
"pg": "^8.12.0",
"uuid": "^10.0.0",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"pg-connection-string": "^2.6.4"
},
"devDependencies": {
"@types/node": "22.4.1"
}
}