{
  "name": "@n8n/rest-api-client",
  "type": "module",
  "version": "2.40.1",
  "files": [
    "dist",
    "LICENSE.md",
    "LICENSE_EE.md"
  ],
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./*": {
      "types": "./dist/*.d.mts",
      "import": "./dist/*.mjs",
      "require": "./dist/*.cjs"
    }
  },
  "dependencies": {
    "@n8n/api-types": "1.40.1",
    "@n8n/constants": "0.39.0",
    "@n8n/permissions": "0.77.0",
    "@n8n/utils": "1.48.0",
    "n8n-workflow": "2.40.1",
    "axios": "1.18.0"
  },
  "devDependencies": {
    "@n8n/eslint-config": "0.0.1",
    "@n8n/i18n": "2.40.1",
    "@n8n/playwright-janitor": "0.1.0",
    "@n8n/typescript-config": "1.12.0",
    "@n8n/vitest-config": "1.22.0",
    "@testing-library/jest-dom": "^6.6.3",
    "tsdown": "^0.16.5",
    "typescript": "6.0.2",
    "vite": "^8.0.2",
    "vitest": "^4.1.9",
    "vue-tsc": "^2.2.8"
  },
  "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": "tsdown --watch",
    "build": "tsdown",
    "build:unchecked": "pnpm run build",
    "preview": "vite preview",
    "typecheck": "vue-tsc --noEmit",
    "test": "vitest run",
    "test:changed": "janitor test-scoped",
    "test:dev": "vitest --silent=false",
    "lint": "eslint src --quiet",
    "lint:fix": "eslint src --fix",
    "format": "biome format --write . && prettier --write . --ignore-path ../../../../.prettierignore",
    "format:check": "biome ci . && prettier --check . --ignore-path ../../../../.prettierignore"
  }
}