mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-22 20:35:23 +02:00
29 lines
760 B
JSON
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:"
|
|
}
|
|
}
|