-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
{
"name": "generic-kafka-forward",
"version": "1.1.2",
"description": "Forwards messages to kafka from Flowcore.",
"author": "Brian Bischoff <[email protected]>",
"private": true,
"license": "UNLICENSED",
"scripts": {
"dev": "bun run --watch src/index.ts",
"build": "bun build --outdir=dist --minify --target=bun --sourcemap src/index.ts",
"lint": "bun run biome lint",
"format": "bun run biome format"
},
"dependencies": {
"@elysiajs/bearer": "^1.1.1",
"@sinclair/typebox": "^0.33.7",
"@types/lodash": "^4.17.10",
"dayjs": "^1.11.12",
"drizzle-orm": "^0.33.0",
"elysia": "^1.1.9",
"kafkajs": "^2.2.4",
"lodash": "^4.17.21",
"rou3": "^0.5.1",
"winston": "^3.14.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@faker-js/faker": "^8.4.1",
"@types/bun": "latest",
"env-cmd": "^10.1.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"overrides": {
"@sinclair/typebox": "^0.33.7"
},
"trustedDependencies": [
"@biomejs/biome"
]
}