-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.33 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.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
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
{
"name": "@mtakla/cronops",
"version": "0.1.2",
"description": "Automated cross-container file lifecycle management with cron scheduling",
"type": "module",
"author": "mtakla@nevereven",
"license": "ISC",
"funding": {
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/nevereven"
},
"homepage": "https://github.com/mtakla/cronops#readme",
"repository": {
"type": "git",
"url": "https://github.com/mtakla/cronops.git"
},
"bugs": {
"url": "https://github.com/mtakla/cronops/issues"
},
"bin": {
"cronops": "./dist/server.js"
},
"main": "./dist/server.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=24.0.0",
"npm": ">=10.0.0"
},
"keywords": [
"cron",
"file",
"glob",
"exec",
"copy",
"move",
"archive",
"docker",
"scheduler",
"lifecycle",
"cross-container"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"config",
"LICENSE",
"README.md"
],
"dependencies": {
"chalk": "5.6.2",
"date-fns": "4.1.0",
"fast-glob": "3.3.3",
"fastify": "5.7.4",
"figlet": "1.10.0",
"fs-extra": "11.3.3",
"node-cron": "4.2.1",
"p-limit": "7.3.0",
"parse-duration": "2.1.5",
"tar-fs": "3.1.1",
"yaml": "2.8.2",
"zod": "4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.3.0",
"@types/shell-quote": "^1.7.5",
"@types/tar-fs": "2.0.4",
"@vitest/coverage-v8": "^4.0.18",
"typedoc": "^0.28.17",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"scripts": {
"check": "biome check",
"check:fix": "biome check --write",
"test": "vitest run",
"coverage": "vitest run --coverage",
"loadtest": "tsc && node ./dist/tests/loadtest.js",
"docs": "typedoc",
"build": "tsc",
"build:types": "tsc --declaration",
"dev": "tsc --sourceMap --inlineSources && node --env-file=.env.local ./dist/server.js",
"docker": "docker build --load --target app -t cronops:local .",
"docker:docs": "docker build --load --target docs -t cronops-docs:local ."
}
}