{
  "name": "@n8n/ai-workflow-builder",
  "version": "0.17.1",
  "main": "dist/index.js",
  "module": "src/index.ts",
  "types": "dist/index.d.ts",
  "files": [
    "dist/**/*",
    "LICENSE_EE.md",
    "LICENSE.md"
  ],
  "exports": {
    ".": {
      "require": "./dist/index.js",
      "import": "./src/index.ts",
      "types": "./dist/index.d.ts"
    }
  },
  "dependencies": {
    "@langchain/anthropic": "0.3.23",
    "@langchain/core": "0.3.61",
    "@langchain/langgraph": "0.2.74",
    "@langchain/openai": "0.5.16",
    "@n8n_io/ai-assistant-sdk": "1.15.0",
    "langsmith": "^0.3.45",
    "picocolors": "1.0.1",
    "zod": "3.25.67",
    "@n8n/config": "1.50.0",
    "@n8n/di": "0.9.0",
    "@n8n/backend-common": "^0.17.1",
    "n8n-workflow": "1.104.1"
  },
  "devDependencies": {
    "@types/cli-progress": "^3.11.5",
    "p-limit": "^3.1.0",
    "cli-progress": "^3.12.0",
    "cli-table3": "^0.6.3",
    "jest-mock-extended": "^3.0.4",
    "madge": "^8.0.0",
    "@n8n/typescript-config": "1.3.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",
    "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:coverage": "jest --coverage",
    "test:watch": "jest --watch",
    "lint": "eslint . --quiet",
    "lint:fix": "eslint . --fix",
    "watch": "tsc-watch -p tsconfig.build.json --onCompilationComplete \"tsc-alias -p tsconfig.build.json\"",
    "deps:graph": "madge src/index.ts --image deps-graph.svg",
    "deps:graph:service": "madge src/ai-workflow-builder-agent.service.ts --image deps-service.svg",
    "deps:graph:tools": "madge src/tools/index.ts --image deps-tools.svg",
    "deps:circular": "madge src/index.ts --circular",
    "deps:report": "madge src/index.ts --json > deps-report.json && echo 'Dependency report saved to deps-report.json'",
    "deps:orphans": "madge src/index.ts --orphans",
    "deps:all": "pnpm run deps:graph && pnpm run deps:graph:service && pnpm run deps:graph:tools && pnpm run deps:circular && pnpm run deps:report",
    "eval": "tsx evaluations/run-evaluation.ts",
    "eval:generate": "GENERATE_TEST_CASES=true tsx evaluations/run-evaluation.ts"
  }
}