-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "xstate-streams",
"version": "0.1.0",
"description": "XState Runtime for Streaming Data Platforms - supporting Kafka, Mongo, Cloudflare Queues, and PQueue",
"type": "module",
"types": "index.ts",
"main": "dist/index.js",
"scripts": {
"test": "vitest --globals"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drivly/xstate-streams.git"
},
"keywords": [
"kafka",
"mongo",
"mongodb",
"xstate",
"state",
"state-machine",
"queue",
"queues",
"p-queue"
],
"author": "Nathan Clevenger & Samuel Lippert at Driv.ly",
"license": "MIT",
"bugs": {
"url": "https://github.com/drivly/xstate-streams/issues"
},
"homepage": "https://github.com/drivly/xstate-streams#readme",
"devDependencies": {
"kafkajs": "^2.2.4",
"mongodb": "^6.2.0",
"mongodb-memory-server": "^9.0.1",
"mongoose": "^8.0.0",
"schema-dts": "^1.1.2",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"dependencies": {
"p-queue": "^7.4.1",
"xstate": "^5.0.0-beta.40"
}
}