-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.4 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.4 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@message-queue-toolkit/sqs",
"version": "24.2.1",
"private": false,
"license": "MIT",
"description": "SQS adapter for message-queue-toolkit",
"maintainers": [
{
"name": "Igor Savin",
"email": "kibertoad@gmail.com"
}
],
"type": "module",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "npm run clean && tsc --project tsconfig.build.json",
"clean": "rimraf dist",
"test": "vitest",
"test:coverage": "npm run test -- --coverage",
"lint": "biome check && tsc",
"lint:fix": "biome check --write .",
"docker:start": "docker compose up -d redis && if [ \"$QUEUE_BACKEND\" = \"localstack\" ]; then docker compose up -d --quiet-pull --wait localstack; fi",
"docker:stop": "docker compose down",
"prepublishOnly": "npm run lint && npm run build"
},
"dependencies": {
"@lokalise/node-core": "^14.6.1",
"sqs-consumer": "^14.1.0"
},
"peerDependencies": {
"@aws-sdk/client-sqs": "^3.632.0",
"@message-queue-toolkit/core": ">=25.0.0",
"zod": ">=3.25.76 <5.0.0"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.812.0",
"@aws-sdk/client-sqs": "^3.812.0",
"@biomejs/biome": "^2.3.8",
"@lokalise/biome-config": "^3.1.0",
"@lokalise/tsconfig": "^3.0.0",
"@message-queue-toolkit/core": "*",
"@message-queue-toolkit/redis-message-deduplication-store": "*",
"@message-queue-toolkit/s3-payload-store": "*",
"@message-queue-toolkit/schemas": "*",
"@types/node": "^25.0.2",
"@vitest/coverage-v8": "^4.0.15",
"awilix": "^13.0.3",
"awilix-manager": "^6.1.0",
"fauxqs": "^2.0.0",
"ioredis": "^5.6.1",
"rimraf": "^6.0.1",
"typescript": "^5.9.3",
"vitest": "^4.0.15",
"zod": "^4.1.13"
},
"homepage": "https://github.com/kibertoad/message-queue-toolkit",
"repository": {
"type": "git",
"url": "git://github.com/kibertoad/message-queue-toolkit.git"
},
"keywords": [
"message",
"queue",
"queues",
"abstract",
"common",
"utils",
"sqs"
],
"files": [
"README.md",
"LICENSE",
"dist/*"
]
}