-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 943 Bytes
/
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
{
"name": "@markwylde/eventbase",
"private": false,
"version": "3.5.0",
"type": "module",
"types": "lib/index.d.ts",
"main": "lib/index.js",
"scripts": {
"start": "tsx demo/index.ts",
"build": "tsc",
"dev": "tsx --watch demo/index.ts",
"test": "tsx --test test/*.test.ts",
"test:only": "tsx --test --test-only test/*.test.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"event sourcing",
"keyvalue",
"kvdb",
"database",
"nats",
"jetstream"
],
"author": {
"email": "[email protected]",
"name": "Mark Wylde",
"url": "https://github.com/markwylde"
},
"license": "MIT",
"description": "",
"dependencies": {
"@nats-io/jetstream": "^3.0.0-37",
"@nats-io/transport-node": "^3.0.0-35",
"doubledb": "^3.4.2",
"level": "^9.0.0"
},
"devDependencies": {
"@types/node": "^22.13.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}