-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.44 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.44 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": "@integratingfactor/n8n-workflow-cli",
"version": "1.2.1",
"description": "CLI tool for managing n8n workflows across environments with support for tags, validation, and multi-environment deployment",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"n8n-workflow-cli": "dist/cli.js"
},
"files": [
"dist/**/*",
"README.md",
"docs/**/*"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"n8n",
"workflow",
"automation",
"cli",
"deployment",
"devops"
],
"author": "Your Company",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"dotenv": "^17.2.3",
"ora": "^7.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.19.23",
"prettier": "^3.6.2",
"tsx": "^4.0.0",
"typescript": "^5.2.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/integratingfactor/n8n-workflow-cli.git"
},
"bugs": {
"url": "https://github.com/integratingfactor/n8n-workflow-cli/issues"
},
"homepage": "https://github.com/integratingfactor/n8n-workflow-cli#readme"
}