mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-31 23:47:28 -08:00
d7ba206b30
Some checks failed
Test Master / install-and-build (push) Waiting to run
Test Master / Unit tests (18.x) (push) Blocked by required conditions
Test Master / Unit tests (20.x) (push) Blocked by required conditions
Test Master / Unit tests (22.4) (push) Blocked by required conditions
Test Master / Lint (push) Blocked by required conditions
Test Master / Notify Slack on failure (push) Blocked by required conditions
Benchmark Docker Image CI / build (push) Has been cancelled
36 lines
970 B
JSON
36 lines
970 B
JSON
{
|
|
"name": "@n8n/task-runner",
|
|
"version": "1.3.0",
|
|
"scripts": {
|
|
"clean": "rimraf dist .turbo",
|
|
"start": "node dist/start.js",
|
|
"dev": "pnpm build && pnpm start",
|
|
"typecheck": "tsc --noEmit",
|
|
"build": "tsc -p ./tsconfig.build.json && tsc-alias -p tsconfig.build.json",
|
|
"format": "biome format --write src",
|
|
"format:check": "biome ci src",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"lint": "eslint . --quiet",
|
|
"lintfix": "eslint . --fix",
|
|
"watch": "tsc-watch -p tsconfig.build.json --onCompilationComplete \"tsc-alias -p tsconfig.build.json\""
|
|
},
|
|
"main": "dist/start.js",
|
|
"module": "src/start.ts",
|
|
"types": "dist/start.d.ts",
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"dependencies": {
|
|
"@n8n/config": "workspace:*",
|
|
"n8n-workflow": "workspace:*",
|
|
"n8n-core": "workspace:*",
|
|
"nanoid": "^3.3.6",
|
|
"typedi": "catalog:",
|
|
"ws": "^8.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"luxon": "catalog:"
|
|
}
|
|
}
|