{
  "name": "@n8n/expression-runtime",
  "version": "0.8.0",
  "description": "Secure, isolated expression evaluation runtime for n8n",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/esm/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/esm/index.d.ts",
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    },
    "./*": "./*"
  },
  "keywords": [
    "n8n",
    "expression",
    "evaluation",
    "isolated-vm",
    "web-worker",
    "security"
  ],
  "license": "SEE LICENSE IN LICENSE.md",
  "dependencies": {
    "@n8n/tournament": "1.0.6",
    "isolated-vm": "^6.0.2",
    "js-base64": "3.7.2",
    "jssha": "3.3.1",
    "lodash": "4.17.23",
    "luxon": "3.7.2",
    "md5": "2.3.0",
    "title-case": "3.0.3",
    "transliteration": "2.3.5"
  },
  "devDependencies": {
    "@types/lodash": "4.17.17",
    "@types/luxon": "3.2.0",
    "@types/md5": "^2.3.5",
    "typescript": "6.0.2",
    "vitest": "^4.1.1",
    "@n8n/typescript-config": "1.4.0",
    "@n8n/vitest-config": "1.9.0"
  },
  "files": [
    "dist",
    "ARCHITECTURE.md",
    "LICENSE.md",
    "LICENSE_EE.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": {
    "build": "tsc --build tsconfig.build.esm.json tsconfig.build.cjs.json && pnpm build:runtime",
    "build:runtime": "node esbuild.config.js",
    "test": "vitest run",
    "test:unit": "vitest run",
    "test:dev": "vitest --watch --silent false",
    "typecheck": "tsc --noEmit"
  }
}