-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.53 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
{
"name": "cronyaml",
"version": "0.1.2",
"description": "A lightweight YAML-based cron job scheduler for Node.js",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/NaoCoding/cronyaml.git"
},
"bugs": {
"url": "https://github.com/NaoCoding/cronyaml/issues"
},
"homepage": "https://github.com/NaoCoding/cronyaml#readme",
"keywords": [
"cron",
"scheduler",
"yaml",
"nodejs",
"automation"
],
"engines": {
"node": ">=20"
},
"bin": {
"cronyaml": "./dist/cli/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/cli/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"prepack": "npm run build",
"prepublishOnly": "npm test"
},
"dependencies": {
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"execa": "^9.5.2",
"ms": "^2.1.3",
"node-cron": "^4.2.1",
"picocolors": "^1.1.0",
"yaml": "^2.6.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/ms": "^0.7.34",
"@types/node": "^22.10.1",
"eslint": "^9.16.0",
"typescript-eslint": "^8.18.0",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^4.1.10"
}
}