-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.55 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
{
"name": "@wataruoguchi/emmett-event-store-kysely",
"publishConfig": {
"access": "public"
},
"version": "2.2.5",
"description": "Emmett Event Store with Kysely",
"author": "Wataru Oguchi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wataruoguchi/emmett-libs.git"
},
"homepage": "https://github.com/wataruoguchi/emmett-libs",
"bugs": "https://github.com/wataruoguchi/emmett-libs/issues",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/types.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json && tsup src/index.ts src/projections/index.ts",
"type-check": "tsc --noEmit",
"tc": "npm run type-check",
"test": "npm run type-check && vitest run",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@types/node": "^24.9.2",
"@vitest/coverage-v8": "^4.0.18",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitest": "^4.0.18"
},
"peerDependencies": {
"@event-driven-io/emmett": "0",
"kysely": "0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.9.5"
},
"keywords": [
"emmett",
"event-store",
"kysely",
"postgres",
"postgresql",
"Event Sourcing",
"event-sourcing",
"read-model",
"read-models",
"read-models-projection",
"read-models-projections"
]
}