-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 649 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 649 Bytes
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
{
"name": "@internal/redis-worker",
"private": true,
"version": "0.0.1",
"main": "./src/index.ts",
"types": "./src/index.ts",
"type": "module",
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"@internal/redis": "workspace:*",
"@trigger.dev/core": "workspace:*",
"ioredis": "^5.3.2",
"lodash.omit": "^4.5.0",
"nanoid": "^5.0.7",
"p-limit": "^6.2.0",
"zod": "3.23.8"
},
"devDependencies": {
"@internal/testcontainers": "workspace:*",
"@types/lodash.omit": "^4.5.7",
"vitest": "^1.4.0"
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest --no-file-parallelism"
}
}