mirror of
https://github.com/n8n-io/n8n.git
synced 2026-07-31 13:05:42 +02:00
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
37 lines
1.1 KiB
JSON
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"
|
|
}
|