mirror of
https://github.com/n8n-io/n8n
synced 2026-04-21 15:47:20 +00:00
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
{
|
|
"name": "@n8n/cli",
|
|
"version": "0.3.0",
|
|
"description": "[beta] Client CLI for n8n — manage workflows, executions, and credentials from the terminal",
|
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
"bin": {
|
|
"n8n-cli": "bin/n8n-cli.mjs"
|
|
},
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"bin",
|
|
"dist",
|
|
"skills"
|
|
],
|
|
"scripts": {
|
|
"clean": "rimraf dist .turbo",
|
|
"dev": "pnpm watch",
|
|
"typecheck": "tsc --noEmit",
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"format": "biome format --write .",
|
|
"format:check": "biome ci .",
|
|
"lint": "eslint src --quiet",
|
|
"lint:fix": "eslint src --fix",
|
|
"watch": "tsc -p tsconfig.build.json --watch",
|
|
"test": "vitest run",
|
|
"test:unit": "vitest run"
|
|
},
|
|
"oclif": {
|
|
"bin": "n8n-cli",
|
|
"commands": {
|
|
"strategy": "explicit",
|
|
"target": "./dist/index.js",
|
|
"identifier": "commands"
|
|
},
|
|
"topicSeparator": " "
|
|
},
|
|
"dependencies": {
|
|
"@oclif/core": "^4.5.2"
|
|
},
|
|
"devDependencies": {
|
|
"@n8n/typescript-config": "workspace:*",
|
|
"@n8n/vitest-config": "workspace:*",
|
|
"@types/node": "24.10.1",
|
|
"vitest": "catalog:"
|
|
}
|
|
}
|