-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
93 lines (93 loc) · 2.43 KB
/
package.json
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
{
"name": "adonis-resque",
"version": "2.0.2",
"type": "module",
"description": " Resque Queue for AdonisJS v6 ",
"main": "build/index.js",
"files": [
"build"
],
"exports": {
".": "./build/index.js",
"./services/main": "./build/services/main.js",
"./commands": "./build/commands/main.js",
"./providers/resque_provider": "./build/providers/resque_provider.js",
"./types": "./build/types.js"
},
"engines": {
"node": ">=18.16.0"
},
"scripts": {
"build": "npm run compile",
"dev": "tsup-node --watch --onSuccess 'tsc -d && npm run postcompile'",
"typecheck": "tsc --noEmit",
"copy:templates": "copyfiles \"stubs/**/**/*.stub\" build",
"compile": "tsup-node && tsc --emitDeclarationOnly --declaration",
"postcompile": "npm run copy:templates && npm run index:commands",
"test": "node --loader ts-node/esm --enable-source-maps bin/test.ts",
"index:commands": "adonis-kit index build/commands"
},
"bugs": {
"url": "https://github.com/shiny/adonis-resque/issues"
},
"keywords": [
"adonisjs",
"adonis6",
"resque",
"node-resque",
"queue"
],
"author": "Chieh",
"license": "MIT",
"homepage": "https://github.com/shiny/adonis-resque",
"repository": {
"type": "git",
"url": "git+https://github.com/shiny/adonis-resque.git"
},
"devDependencies": {
"@adonisjs/assembler": "^7.7.0",
"@adonisjs/core": "^6.12.1",
"@adonisjs/eslint-config": "^1.3.0",
"@adonisjs/prettier-config": "^1.3.0",
"@adonisjs/redis": "8.0.1",
"@adonisjs/tsconfig": "^1.3.0",
"@japa/expect": "3.0.2",
"@japa/expect-type": "2.0.2",
"@japa/runner": "3.1.4",
"@types/ms": "^0.7.34",
"@types/node": "^22.5.0",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"nock": "^13.5.5",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"peerDependencies": {
"@adonisjs/core": "^6.12.1",
"@adonisjs/redis": "^9.1.0"
},
"tsup": {
"entry": [
"./index.ts",
"./base_job.ts",
"commands/make_job.ts",
"commands/resque_start.ts",
"./src/types.ts",
"./services/main.ts",
"./providers/resque_provider.ts"
],
"outDir": "./build",
"clean": true,
"format": "esm",
"dts": false,
"sourcemap": true,
"target": "esnext"
},
"dependencies": {
"@poppinss/utils": "^6.7.3",
"croner": "^8.1.1",
"ms": "^2.1.3",
"node-resque": "^9.3.5"
}
}