{
  "name": "@n8n/backend-network",
  "version": "1.9.5",
  "main": "dist/index.js",
  "module": "src/index.ts",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./src/index.ts",
      "require": "./dist/index.js"
    },
    "./testing": {
      "types": "./dist/testing.d.ts",
      "import": "./src/testing.ts",
      "require": "./dist/testing.js"
    },
    "./transport": {
      "types": "./dist/transport.d.ts",
      "import": "./src/transport.ts",
      "require": "./dist/transport.js"
    },
    "./proxy": {
      "types": "./dist/proxy/index.d.ts",
      "import": "./src/proxy/index.ts",
      "require": "./dist/proxy/index.js"
    }
  },
  "typesVersions": {
    "*": {
      "testing": [
        "dist/testing.d.ts"
      ],
      "transport": [
        "dist/transport.d.ts"
      ],
      "proxy": [
        "dist/proxy/index.d.ts"
      ]
    }
  },
  "files": [
    "dist/**/*",
    "LICENSE.md",
    "LICENSE_EE.md"
  ],
  "dependencies": {
    "axios": "1.18.0",
    "cache-manager": "5.2.3",
    "form-data": "4.0.6",
    "http-proxy-agent": "7.0.2",
    "https-proxy-agent": "7.0.6",
    "iconv-lite": "0.6.3",
    "proxy-from-env": "^1.1.0",
    "qs": "6.15.2",
    "reflect-metadata": "0.2.2",
    "undici": "^7.29.0",
    "zod": "3.25.76",
    "@n8n/backend-common": "1.35.5",
    "@n8n/utils": "1.43.1",
    "@n8n/di": "0.16.0",
    "n8n-workflow": "2.35.3",
    "@n8n/constants": "0.34.0",
    "@n8n/config": "2.33.4"
  },
  "devDependencies": {
    "@types/proxy-from-env": "^1.0.4",
    "@types/qs": "6.9.15",
    "@vitest/coverage-v8": "4.1.9",
    "nock": "14.0.14",
    "typescript": "7.0.2",
    "vitest": "^4.1.9",
    "vitest-mock-extended": "^3.1.0",
    "@n8n/typescript-config": "1.9.0",
    "@n8n/vitest-config": "1.20.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": "tsc -p tsconfig.build.json",
    "build:unchecked": "tsc -p tsconfig.build.json --noCheck",
    "format": "biome format --write .",
    "format:check": "biome ci .",
    "lint": "eslint . --quiet",
    "lint:fix": "eslint . --fix",
    "watch": "tsc -p tsconfig.build.json --watch",
    "test": "vitest run",
    "test:unit": "vitest run",
    "test:dev": "vitest --silent=false"
  }
}