forked from h3ravel/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.5 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.5 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
{
"name": "@h3ravel/queue",
"version": "11.1.0-alpha.10",
"description": "Job queues, workers and broadcasting support system for H3ravel.",
"h3ravel": {
"providers": [
"QueueServiceProvider"
]
},
"type": "module",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./*": "./*"
}
},
"homepage": "https://h3ravel.toneflix.net",
"repository": {
"type": "git",
"url": "git+https://github.com/h3ravel/framework.git",
"directory": "packages/queue"
},
"keywords": [
"h3ravel",
"modern",
"web",
"H3",
"framework",
"nodejs",
"typescript",
"laravel"
],
"scripts": {
"build": "tsdown --config-loader unconfig",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"lint": "eslint . --ext .ts",
"test": "jest --passWithNoTests",
"version-patch": "pnpm version patch"
},
"peerDependencies": {
"@h3ravel/core": "workspace:^1.22.0-alpha.10",
"@h3ravel/contracts": "workspace:^0.29.0-alpha.10"
},
"dependencies": {
"bullmq": "^5.0.0",
"ioredis": "^5.3.2"
},
"devDependencies": {
"typescript": "^5.4.0"
}
}