{
  "name": "@n8n/scheduler",
  "version": "1.8.3",
  "main": "dist/index.js",
  "module": "src/index.ts",
  "types": "dist/index.d.ts",
  "files": [
    "dist/**/*",
    "LICENSE.md",
    "LICENSE_EE.md"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "dependencies": {
    "@n8n/constants": "0.38.0",
    "@n8n/utils": "1.47.0",
    "cron-parser": "5.6.1",
    "luxon": "3.7.2",
    "n8n-workflow": "2.39.3"
  },
  "devDependencies": {
    "@n8n/typescript-config": "1.11.0",
    "@n8n/vitest-config": "1.21.0",
    "@stryker-mutator/core": "10.0.0",
    "@stryker-mutator/vitest-runner": "10.0.0",
    "@types/luxon": "3.2.0",
    "@vitest/coverage-v8": "4.1.9",
    "fast-check": "^3.23.2",
    "typescript": "7.0.2",
    "vitest": "^4.1.9",
    "vitest-mock-extended": "^3.1.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",
    "mutate": "node ../../../scripts/mutation-health/mutate.mjs --package-dir packages/@n8n/scheduler",
    "watch": "tsc -p tsconfig.build.json --watch",
    "test": "vitest run --passWithNoTests",
    "test:unit": "vitest run --passWithNoTests",
    "test:dev": "vitest --silent=false"
  }
}