-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.15 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.15 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "adapter-queue",
"version": "0.3.0",
"description": "A TypeScript queue system inspired by Yii2-Queue architecture",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"test:integration": "vitest run tests/integration",
"test:unit": "vitest run tests --exclude tests/integration",
"lint": "tsc --noEmit",
"dev": "tsc --watch",
"prepublishOnly": "npm run build && npm test",
"release": "node scripts/release.ts",
"release:beta": "node scripts/release.ts beta",
"publish:beta": "pnpm publish --tag beta",
"publish:latest": "pnpm publish"
},
"keywords": [
"queue",
"job",
"sqs",
"database",
"typescript",
"yii2-queue"
],
"author": "Javier López <javierlopezdeveloper@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/muniter/adapter-queue.git"
},
"bugs": {
"url": "https://github.com/muniter/adapter-queue/issues"
},
"homepage": "https://github.com/muniter/adapter-queue#readme",
"license": "MIT",
"files": [
"dist/**/*",
"src/**/*",
"README.md",
"package.json"
],
"devDependencies": {
"@aws-sdk/client-sqs": "^3.831.0",
"@types/better-sqlite3": "7.6.13",
"@types/node": "^20.0.0",
"better-sqlite3": "^12.0.0",
"mongoose": "^8.0.0",
"redis": "^5.5.6",
"testcontainers": "^11.0.3",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"exports": {
".": {
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
},
"./drivers/sqlite": {
"import": "./dist/src/drivers/sqlite.js",
"types": "./dist/src/drivers/sqlite.d.ts"
},
"./drivers/redis": {
"import": "./dist/src/drivers/redis.js",
"types": "./dist/src/drivers/redis.d.ts"
},
"./drivers/sqs": {
"import": "./dist/src/drivers/sqs.js",
"types": "./dist/src/drivers/sqs.d.ts"
},
"./drivers/db": {
"import": "./dist/src/drivers/db.js",
"types": "./dist/src/drivers/db.d.ts"
},
"./drivers/file": {
"import": "./dist/src/drivers/file.js",
"types": "./dist/src/drivers/file.d.ts"
},
"./drivers/memory": {
"import": "./dist/src/drivers/memory.js",
"types": "./dist/src/drivers/memory.d.ts"
},
"./drivers/mongoose": {
"import": "./dist/src/drivers/mongoose.js",
"types": "./dist/src/drivers/mongoose.d.ts"
},
"./plugins/ecs-protection-manager": {
"import": "./dist/src/plugins/ecs-protection-manager.js",
"types": "./dist/src/plugins/ecs-protection-manager.d.ts"
}
},
"peerDependencies": {
"@aws-sdk/client-sqs": "^3.0.0",
"better-sqlite3": "^9.0.0",
"mongoose": "^7.0.0 || ^8.0.0",
"redis": "^4.0.0"
},
"peerDependenciesMeta": {
"@aws-sdk/client-sqs": {
"optional": true
},
"better-sqlite3": {
"optional": true
},
"mongodb": {
"optional": true
},
"mongoose": {
"optional": true
},
"redis": {
"optional": true
}
},
"engines": {
"node": ">=18.0.0"
}
}