-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.28 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.28 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
{
"name": "cron8n",
"version": "1.0.2",
"description": "CLI tool for managing n8n cron-triggered workflows",
"homepage": "https://github.com/litepacks/cron8n",
"repository": {
"type": "git",
"url": "git+https://github.com/litepacks/cron8n.git"
},
"bugs": {
"url": "https://github.com/litepacks/cron8n/issues"
},
"type": "module",
"main": "./dist/cli.js",
"bin": {
"cron8n": "./dist/cli.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/cli.js",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"n8n",
"cron",
"workflow",
"automation",
"cli"
],
"author": "cond",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"commander": "^12.1.0",
"prompts": "^2.4.2",
"zod": "^3.23.8",
"undici": "^6.19.8",
"cron-parser": "^4.9.0",
"pathe": "^1.1.2",
"nanoid": "^5.0.7",
"kleur": "^4.1.5",
"fastify": "^4.28.1",
"open": "^10.1.0"
},
"devDependencies": {
"typescript": "^5.5.4",
"tsup": "^8.2.4",
"vitest": "^1.6.0",
"@types/node": "^18.19.44",
"@types/prompts": "^2.4.9"
}
}