n8n/packages/@n8n/engine/package.json
mfsiega f3a21e14a1
chore(core): Scaffold @n8n/engine package (no-changelog) (#29838)
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-06 09:04:24 +00:00

29 lines
760 B
JSON

{
"name": "@n8n/engine",
"version": "0.1.0",
"description": "n8n workflow execution engine (v2)",
"scripts": {
"clean": "rimraf dist .turbo",
"typecheck": "tsc --noEmit",
"build": "tsc -p tsconfig.build.json",
"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": {},
"devDependencies": {
"@n8n/typescript-config": "workspace:*",
"@n8n/vitest-config": "workspace:*",
"vitest": "catalog:"
}
}