-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.42 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": "cronyx",
"version": "3.0.3",
"description": "Script-based task scheduler with scalable architecture, and integrated dependency management.",
"type": "module",
"module": "dist/index.ts",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"format": "prettier **/*.{md,ts,cts,json} -w",
"format:check": "prettier **/*.{md,ts,cts,json} --check",
"lint": "eslint **/*.{ts,cts} --quiet",
"lint:fix": "eslint **/*.{ts,cts} --quiet --fix",
"prepare": "husky install",
"prepublishOnly": "tsc -p tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yujiosaka/Cronyx.git"
},
"keywords": [
"bun",
"cron",
"crontab",
"cronjob",
"scheduler",
"job-scheduler",
"task-scheduler",
"mongodb",
"mysql",
"postgres",
"redis"
],
"author": "Yuji Isobe",
"license": "MIT",
"bugs": {
"url": "https://github.com/yujiosaka/Cronyx/issues"
},
"homepage": "https://github.com/yujiosaka/Cronyx#readme",
"files": [
"dist"
],
"dependencies": {
"cron-parser": "^4.9.0",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"debug": "^4.3.4",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^11.0.0",
"@semantic-release/release-notes-generator": "^12.0.0",
"@types/debug": "^4.1.9",
"@types/uuid": "^9.0.5",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"bun-types": "latest",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"mongoose": "^7.4.0",
"mysql": "^2.18.1",
"pg": "^8.11.3",
"prettier": "^3.0.3",
"redis": "^4.1.0",
"semantic-release": "^22.0.5",
"typeorm": "^0.3.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"mongoose": "^7.4.0",
"redis": "^4.1.0",
"typeorm": "^0.3.0"
},
"lint-staged": {
"**/*.{ts,cts}": [
"eslint --fix"
],
"**/*.{md,ts,cts,json}": [
"prettier --write"
]
}
}