mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
bcc4bb3c57
Some checks are pending
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
Co-authored-by: ShireenMissi <ShireenMissi@users.noreply.github.com>
62 lines
1.5 KiB
JSON
62 lines
1.5 KiB
JSON
{
|
|
"name": "n8n-workflow",
|
|
"version": "1.55.0",
|
|
"description": "Workflow base code of n8n",
|
|
"main": "dist/index.js",
|
|
"module": "src/index.ts",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"require": "./dist/index.js",
|
|
"import": "./src/index.ts",
|
|
"types": "./dist/index.d.ts"
|
|
},
|
|
"./*": "./*"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf dist .turbo",
|
|
"dev": "pnpm watch",
|
|
"typecheck": "tsc --noEmit",
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"format": "prettier --write . --ignore-path ../../.prettierignore",
|
|
"lint": "eslint . --quiet",
|
|
"lintfix": "eslint . --fix",
|
|
"watch": "tsc -p tsconfig.build.json --watch",
|
|
"test": "jest",
|
|
"test:dev": "jest --watch"
|
|
},
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"devDependencies": {
|
|
"@langchain/core": "^0.2.18",
|
|
"@types/deep-equal": "^1.0.1",
|
|
"@types/express": "catalog:",
|
|
"@types/jmespath": "^0.15.0",
|
|
"@types/lodash": "catalog:",
|
|
"@types/luxon": "^3.2.0",
|
|
"@types/md5": "^2.3.5",
|
|
"@types/xml2js": "catalog:"
|
|
},
|
|
"dependencies": {
|
|
"@n8n/tournament": "1.0.5",
|
|
"@n8n_io/riot-tmpl": "4.0.0",
|
|
"ast-types": "0.15.2",
|
|
"axios": "catalog:",
|
|
"callsites": "3.1.0",
|
|
"deep-equal": "2.2.0",
|
|
"esprima-next": "5.8.4",
|
|
"form-data": "catalog:",
|
|
"jmespath": "0.16.0",
|
|
"js-base64": "3.7.2",
|
|
"jssha": "3.3.1",
|
|
"lodash": "catalog:",
|
|
"luxon": "catalog:",
|
|
"md5": "2.3.0",
|
|
"recast": "0.21.5",
|
|
"title-case": "3.0.3",
|
|
"transliteration": "2.3.5",
|
|
"xml2js": "catalog:"
|
|
}
|
|
}
|