n8n/packages/@n8n/node-engine-compatibility/package.json
mfsiega 642ec341dc
feat(core): Add v1 to v2 workflow converter (no-changelog) (#34870)
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
2026-07-28 11:58:57 +00:00

37 lines
1.1 KiB
JSON

{
"name": "@n8n/node-engine-compatibility",
"version": "0.1.0",
"description": "Adapts v1 nodes and workflows to the Engine 2.0 execution model",
"scripts": {
"clean": "rimraf dist .turbo",
"typecheck": "tsc --noEmit",
"build": "tsc -p tsconfig.build.json",
"build:unchecked": "tsc -p tsconfig.build.json --noCheck",
"format": "biome format --write src",
"format:check": "biome ci src",
"lint": "eslint . --quiet",
"lint:fix": "eslint . --fix",
"test": "vitest run --passWithNoTests",
"test:dev": "vitest --watch",
"watch": "tsc -p tsconfig.build.json --watch"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"dependencies": {
"@n8n/engine": "workspace:*",
"n8n-core": "workspace:*",
"n8n-workflow": "workspace:*"
},
"devDependencies": {
"@n8n/typescript-config": "workspace:*",
"@n8n/vitest-config": "workspace:*",
"n8n-nodes-base": "workspace:*",
"typescript": "catalog:typescript",
"vitest": "catalog:"
},
"license": "LicenseRef-n8n-sustainable-use"
}