mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
c090fcb340
Co-authored-by: michael-radency <88898367+michael-radency@users.noreply.github.com>
34 lines
903 B
JSON
34 lines
903 B
JSON
{
|
|
"name": "@n8n/task-runner",
|
|
"version": "1.2.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": "concurrently \"tsc -w -p tsconfig.build.json\" \"tsc-alias -w -p tsconfig.build.json\""
|
|
},
|
|
"main": "dist/start.js",
|
|
"module": "src/start.ts",
|
|
"types": "dist/start.d.ts",
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"dependencies": {
|
|
"n8n-workflow": "workspace:*",
|
|
"n8n-core": "workspace:*",
|
|
"nanoid": "^3.3.6",
|
|
"ws": "^8.18.0"
|
|
},
|
|
"devDependencies": {
|
|
"luxon": "catalog:"
|
|
}
|
|
}
|