mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
60 lines
1.5 KiB
JSON
60 lines
1.5 KiB
JSON
{
|
|
"name": "@n8n/task-runner",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"description": "",
|
|
"main": "dist/start.js",
|
|
"scripts": {
|
|
"start": "node dist/start.js",
|
|
"dev": "pnpm build && pnpm start",
|
|
"build": "tsc -p ./tsconfig.build.json",
|
|
"test": "jest",
|
|
"lint": "eslint .",
|
|
"lintfix": "eslint . --fix",
|
|
"watch": "tsc -w -p ./tsconfig.build.json"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.15",
|
|
"pnpm": ">=9.5"
|
|
},
|
|
"files": [
|
|
"src/",
|
|
"dist/",
|
|
"package.json",
|
|
"tsconfig.json"
|
|
],
|
|
"main": "dist/start.js",
|
|
"module": "src/start.ts",
|
|
"types": "dist/start.d.ts",
|
|
"packageManager": "pnpm@9.6.0",
|
|
"devDependencies": {
|
|
"@n8n_io/eslint-config": "^0.0.2",
|
|
"@types/jest": "^29.5.0",
|
|
"@types/node": "^18.13.0",
|
|
"@types/ws": "^8.5.12",
|
|
"@typescript-eslint/eslint-plugin": "^6.1.0",
|
|
"eslint": "^8.38.0",
|
|
"eslint-config-airbnb-typescript": "^17.1.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-n8n-local-rules": "^1.0.0",
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
"eslint-plugin-unicorn": "^48.0.0",
|
|
"eslint-plugin-unused-imports": "^3.0.0",
|
|
"jest": "^29.5.0",
|
|
"nodemon": "^2.0.20",
|
|
"prettier": "^3.0.0",
|
|
"ts-jest": "^29.1.0",
|
|
"ts-node": "^10.9.1",
|
|
"tsc-alias": "^1.8.7",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"jmespath": "^0.16.0",
|
|
"luxon": "^3.5.0",
|
|
"n8n-workflow": "workspace:*",
|
|
"n8n-core": "workspace:*",
|
|
"nanoid": "^3.3.6",
|
|
"ws": "^8.18.0"
|
|
}
|
|
}
|