Files
n8n-nodes-gwezz-changdunovel/node_modules/n8n-workflow/package.json
2025-10-26 23:10:15 +08:00

83 lines
2.2 KiB
JSON

{
"name": "n8n-workflow",
"version": "1.114.0",
"description": "Workflow base code of n8n",
"types": "dist/esm/index.d.ts",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./common": {
"types": "./dist/esm/common/index.d.ts",
"import": "./dist/esm/common/index.js",
"require": "./dist/cjs/common/index.js"
},
"./*": "./*"
},
"files": [
"dist/**/*",
"LICENSE.md",
"LICENSE_EE.md"
],
"devDependencies": {
"@langchain/core": "0.3.68",
"@types/express": "^5.0.1",
"@types/jmespath": "^0.15.0",
"@types/lodash": "4.17.17",
"@types/luxon": "3.2.0",
"@types/md5": "^2.3.5",
"@types/xml2js": "^0.4.14",
"vitest": "^3.1.3",
"vitest-mock-extended": "^3.1.0",
"@n8n/config": "1.59.0",
"@n8n/typescript-config": "1.3.0",
"@n8n/vitest-config": "1.5.0"
},
"dependencies": {
"@n8n/tournament": "1.0.6",
"ast-types": "0.15.2",
"callsites": "3.1.0",
"esprima-next": "5.8.4",
"form-data": "4.0.0",
"jmespath": "0.16.0",
"js-base64": "3.7.2",
"jssha": "3.3.1",
"lodash": "4.17.21",
"luxon": "3.4.4",
"md5": "2.3.0",
"recast": "0.22.0",
"title-case": "3.0.3",
"transliteration": "2.3.5",
"xml2js": "0.6.2",
"zod": "3.25.67",
"@n8n/errors": "^0.5.0"
},
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://n8n.io",
"author": {
"name": "Jan Oberhauser",
"email": "jan@n8n.io"
},
"repository": {
"type": "git",
"url": "git+https://github.com/n8n-io/n8n.git"
},
"scripts": {
"clean": "rimraf dist .turbo",
"dev": "pnpm watch",
"typecheck": "tsc --noEmit",
"build:vite": "vite build",
"build": "tsc --build tsconfig.build.esm.json tsconfig.build.cjs.json",
"format": "biome format --write .",
"format:check": "biome ci .",
"lint": "eslint src --quiet",
"lint:fix": "eslint src --fix",
"watch": "tsc --build tsconfig.build.esm.json tsconfig.build.cjs.json --watch",
"test": "vitest run",
"test:dev": "vitest --watch"
}
}