{
  "name": "@n8n/decorators",
  "version": "0.17.1",
  "main": "dist/index.js",
  "module": "src/index.ts",
  "types": "dist/index.d.ts",
  "files": [
    "dist/**/*",
    "LICENSE_EE.md",
    "LICENSE.md"
  ],
  "devDependencies": {
    "@types/express": "^5.0.1",
    "@types/lodash": "4.17.17",
    "@n8n/typescript-config": "1.3.0"
  },
  "dependencies": {
    "lodash": "4.17.21",
    "@n8n/permissions": "^0.31.0",
    "@n8n/di": "^0.9.0",
    "n8n-workflow": "^1.104.1",
    "@n8n/constants": "^0.11.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",
    "format": "biome format --write .",
    "format:check": "biome ci .",
    "lint": "eslint . --quiet",
    "lint:fix": "eslint . --fix",
    "watch": "tsc -p tsconfig.build.json --watch",
    "test": "jest",
    "test:dev": "jest --watch"
  }
}