-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.69 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
{
"name": "@qodeca/8cli",
"version": "0.1.2",
"description": "n8n remote management CLI – AI-first, JSON-native",
"type": "module",
"license": "GPL-3.0-only",
"author": "Qodeca sp. z o.o.",
"homepage": "https://github.com/qodeca/8cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/qodeca/8cli.git"
},
"bugs": {
"url": "https://github.com/qodeca/8cli/issues"
},
"keywords": [
"n8n",
"cli",
"automation",
"workflow",
"ai"
],
"bin": {
"8cli": "dist/bin/8cli.js"
},
"files": [
"dist",
"THIRD-PARTY-LICENSES.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "tsx bin/8cli.ts",
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"test:e2e": "npm run build && vitest run -c vitest.e2e.config.ts",
"test:e2e:macos": "npm run build && vitest run -c vitest.e2e-macos.config.ts",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check:headers": "bash scripts/check-headers.sh",
"prepublishOnly": "npm run build"
},
"dependencies": {
"chalk": "^5.4",
"cli-table3": "^0.6.5",
"commander": "^13",
"diff": "^9.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"execa": "^9.6.1",
"prettier": "^3.8.4",
"testcontainers": "^12.0.2",
"tsx": "^4.22.4",
"typescript": "^5.7",
"typescript-eslint": "^8.61.0",
"vitest": "^4.1.8"
},
"engines": {
"node": ">=22.22"
}
}