{
  "name": "@n8n/utils",
  "type": "module",
  "version": "1.24.0",
  "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"
    },
    "./dist/*": {
      "types": "./dist/*.d.mts",
      "import": "./dist/*.mjs",
      "require": "./dist/*.cjs"
    },
    "./*": {
      "types": "./dist/*.d.mts",
      "import": "./dist/*.mjs",
      "require": "./dist/*.cjs"
    }
  },
  "dependencies": {
    "nanoid": "3.3.8",
    "@n8n/constants": "0.18.0"
  },
  "devDependencies": {
    "@testing-library/jest-dom": "^6.6.3",
    "@testing-library/user-event": "^14.6.1",
    "tsdown": "^0.16.5",
    "typescript": "5.9.2",
    "vite": "npm:rolldown-vite@latest",
    "vitest": "^3.1.3",
    "@n8n/typescript-config": "1.3.0",
    "@n8n/vitest-config": "1.6.0",
    "@n8n/eslint-config": "0.0.1"
  },
  "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": {
    "dev": "tsdown --watch",
    "build": "tsdown",
    "preview": "vite preview",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:unit": "vitest run",
    "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"
  }
}