forked from neplextech/commandkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.33 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.33 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
{
"name": "@commandkit/tasks",
"version": "1.2.1",
"description": "Task management plugin for CommandKit",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./bullmq": {
"types": "./dist/drivers/bullmq.d.ts",
"import": "./dist/drivers/bullmq.js",
"require": "./dist/drivers/bullmq.js"
},
"./sqlite": {
"types": "./dist/drivers/sqlite.d.ts",
"import": "./dist/drivers/sqlite.js",
"require": "./dist/drivers/sqlite.js"
}
},
"files": [
"dist"
],
"scripts": {
"check-types": "tsc --noEmit",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neplextech/commandkit.git",
"directory": "packages/tasks"
},
"keywords": [
"commandkit",
"tasks"
],
"contributors": [
"Twilight <hello@twlite.dev>",
"Avraj <avraj@underctrl.io>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/neplextech/commandkit/issues"
},
"homepage": "https://commandkit.dev",
"devDependencies": {
"bullmq": "^5.70.1",
"commandkit": "workspace:*",
"tsconfig": "workspace:*",
"typescript": "catalog:build"
},
"dependencies": {
"cron-parser": "^5.5.0"
}
}