-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.88 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.88 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
{
"name": "n8n-cli",
"version": "1.9.3",
"description": "Full-featured n8n CLI - workflow management, validation, node search, and more",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"n8n": "dist/cli.js",
"n8n-cli": "dist/cli.js",
"n8n-validate": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/cli.js",
"validate": "node dist/cli.js workflows validate",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"check": "pnpm typecheck && pnpm lint",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"keywords": [
"n8n",
"workflow",
"validation",
"cli",
"automation",
"nodes",
"templates",
"executions"
],
"author": "Yigit Konur",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yigitkonur/cli-n8n.git"
},
"bugs": {
"url": "https://github.com/yigitkonur/cli-n8n/issues"
},
"homepage": "https://github.com/yigitkonur/cli-n8n#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"axios": "^1.6.0",
"better-sqlite3": "^11.0.0",
"chalk": "^5.3.0",
"cli-table3": "^0.6.3",
"commander": "^12.0.0",
"esprima-next": "^5.8.4",
"jsonc-parser": "^3.3.1",
"jsonrepair": "^3.8.0",
"n8n-nodes-base": "^1.120.1",
"n8n-workflow": "^1.119.1"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/better-sqlite3": "^7.6.8",
"@types/node": "^20.0.0",
"eslint": "^9.39.1",
"tsup": "^8.0.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.48.0",
"vitest": "^1.0.0"
}
}