-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.19 KB
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
49
{
"name": "@lowerdeck/queue",
"version": "1.0.11",
"publishConfig": {
"access": "public"
},
"files": [
"src/**",
"dist/**",
"README.md",
"package.json"
],
"author": "Tobias Herber",
"license": "Apache 2",
"type": "module",
"source": "src/index.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.module.js",
"default": "./dist/index.module.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"types": "dist/index.d.ts",
"unpkg": "./dist/index.umd.js",
"scripts": {
"test": "vitest run --passWithNoTests",
"lint": "prettier src/**/*.ts --check",
"build": "rm -rf ./dist && microbundle"
},
"dependencies": {
"@lowerdeck/delay": "^1.0.4",
"@lowerdeck/execution-context": "^1.1.1",
"@lowerdeck/id": "^1.0.8",
"@lowerdeck/memo": "^1.0.4",
"@lowerdeck/redis": "^1.0.6",
"@lowerdeck/sentry": "^1.0.2",
"@lowerdeck/telemetry": "^1.1.1",
"bullmq": "^5.66.0",
"superjson": "^2.2.6"
},
"devDependencies": {
"@lowerdeck/tsconfig": "^1.0.1",
"typescript": "5.8.2",
"microbundle": "^0.15.1",
"vitest": "^3.1.2"
}
}