{
  "name": "@n8n/ai-utilities",
  "version": "0.2.1",
  "description": "Utilities for building AI nodes in n8n",
  "main": "dist/index.js",
  "module": "src/index.ts",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "LICENSE.md",
    "LICENSE_EE.md"
  ],
  "devDependencies": {
    "@types/json-schema": "^7.0.15",
    "jest-mock-extended": "^3.0.4",
    "@types/mime-types": "3.0.1",
    "tsx": "^4.19.3"
  },
  "dependencies": {
    "zod": "3.25.67",
    "zod-to-json-schema": "3.23.3",
    "@langchain/core": "1.1.8",
    "@langchain/classic": "1.0.5",
    "@langchain/community": "1.0.5",
    "@langchain/textsplitters": "1.0.1",
    "@langchain/openai": "1.1.3",
    "langchain": "1.2.3",
    "tmp-promise": "3.0.3",
    "js-tiktoken": "1.0.12",
    "https-proxy-agent": "7.0.6",
    "proxy-from-env": "^1.1.0",
    "undici": "^6.21.0",
    "@n8n/config": "2.7.1",
    "@n8n/typescript-config": "1.3.0",
    "n8n-workflow": "2.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": {
    "example:run": "tsx examples/run.ts",
    "clean": "rimraf dist .turbo",
    "dev": "pnpm run watch",
    "typecheck": "tsc --noEmit",
    "copy-tokenizer-json": "node scripts/copy-tokenizer-json.js .",
    "build": "tsc --build tsconfig.build.json && tsc-alias -p tsconfig.build.json && pnpm copy-tokenizer-json",
    "format": "biome format --write .",
    "format:check": "biome ci .",
    "lint": "eslint . --quiet",
    "lint:fix": "eslint . --fix",
    "watch": "tsc-watch -p tsconfig.build.json",
    "test": "jest",
    "test:unit": "jest",
    "test:dev": "jest --watch"
  }
}