-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "@swarnim/hermes",
"description": "Type safe message bus, and RPC style services. Powered by Redis Streams",
"author": "Swarnim Walavalkar <[email protected]> (https://swarnimwalavalkar.com/)",
"license": "MIT",
"version": "1.1.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"release": "pnpm run build && changeset publish",
"check": "tsc",
"test": "vitest --run",
"docker:redis": "docker run -p 6379:6379 --rm --name hermes_test_redis redis:alpine"
},
"homepage": "https://github.com/SwarnimWalavalkar/hermes#readme",
"repository": {
"type": "git",
"url": "https://github.com/SwarnimWalavalkar/hermes.git"
},
"bugs": {
"url": "https://github.com/SwarnimWalavalkar/hermes/issues",
"email": "[email protected]"
},
"keywords": [
"async-task-queue",
"redis-streams",
"task-queue",
"messaging",
"streams",
"pubsub",
"redis",
"queue",
"rpc"
],
"devDependencies": {
"@types/node": "20.14.2",
"tsup": "^8.1.0",
"typescript": "^5.4.5",
"vitest": "1.6.0"
},
"dependencies": {
"generic-pool": "3.9.0",
"ioredis": "5.4.1",
"zod": "3.23.8"
}
}