{
  "name": "n8n-workflow",
  "version": "2.16.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": "1.1.34",
    "@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": "^4.1.1",
    "vitest-mock-extended": "^3.1.0",
    "@n8n/config": "2.15.0",
    "@n8n/typescript-config": "1.4.0",
    "@n8n/vitest-config": "1.9.0"
  },
  "dependencies": {
    "@n8n/tournament": "1.0.6",
    "ast-types": "0.16.1",
    "callsites": "3.1.0",
    "esprima-next": "5.8.4",
    "form-data": "4.0.4",
    "jmespath": "0.16.0",
    "js-base64": "3.7.2",
    "jssha": "3.3.1",
    "lodash": "4.17.23",
    "luxon": "3.7.2",
    "md5": "2.3.0",
    "recast": "0.22.0",
    "title-case": "3.0.3",
    "transliteration": "2.3.5",
    "uuid": "10.0.0",
    "xml2js": "0.6.2",
    "zod": "3.25.67",
    "jsonrepair": "3.13.2",
    "@n8n/errors": "0.6.0",
    "@n8n/expression-runtime": "0.8.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:unit": "vitest run",
    "test:dev": "vitest --watch"
  }
}