-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.24 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.24 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
50
51
52
53
54
55
56
{
"name": "@mqueue/queue",
"version": "1.0.1",
"type": "module",
"description": "A simple queue interface with support for multiple backends",
"author": "Dom Webber <dom.webber@hotmail.com>",
"contributors": [
"Dom Webber <dom.webber@hotmail.com>"
],
"engines": {
"node": ">=20"
},
"files": [
"dist"
],
"keywords": [
"queue",
"adapter",
"amqplib",
"rhea",
"sqs",
"sqs-consumer",
"azure-service-bus"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/domwebber/mqueue",
"directory": "packages/queue"
},
"scripts": {
"build": "tsup src/index.ts --no-config --dts --format esm --cjsInterop --minify --sourcemap --splitting --treeshake",
"typecheck": "tsc --noEmit",
"test": "node --import tsx --test tests/**/*.test.ts tests/*.test.ts",
"lint:publint": "publint"
},
"license": "MIT",
"publishConfig": {
"access": "public",
"provenance": false
},
"devDependencies": {
"publint": "^0.3.15",
"testcontainers": "^11.7.1",
"tsup": "^8.5.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}