n8n/packages/@n8n/cli/package.json
2026-03-31 05:42:44 +00:00

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:"
}
}