-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 747 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 747 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
28
{
"name": "@internal/run-engine",
"private": true,
"version": "0.0.1",
"main": "./src/index.ts",
"types": "./src/index.ts",
"dependencies": {
"@internal/redis": "workspace:*",
"@internal/redis-worker": "workspace:*",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/semantic-conventions": "^1.27.0",
"@trigger.dev/core": "workspace:*",
"@trigger.dev/database": "workspace:*",
"assert-never": "^1.2.1",
"ioredis": "^5.3.2",
"nanoid": "^3.3.4",
"redlock": "5.0.0-beta.2",
"zod": "3.23.8"
},
"devDependencies": {
"@internal/testcontainers": "workspace:*",
"vitest": "^1.4.0"
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest --sequence.concurrent=false"
}
}