{
  "name": "@xemahq/xema-decorators",
  "version": "0.19.0",
  "description": "Xema platform xema-decorators SDK. NestJS decorators (`@XemaResource`, `@XemaRoute`, `@XemaPublicRoute`, `@XemaInternalRoute`, `@XemaIgnoreRoute`, `@XemaCapability`, `@XemaCapabilities`, `@BffController`), convention-inference engine, and `XemaRuntimeModule` — the declarative source-of-truth annotation layer that replaces handwritten routes/capabilities manifests in every Xema platform service and biome API.",
  "keywords": [
    "xema",
    "xema-platform",
    "nestjs",
    "decorators",
    "manifests",
    "routes",
    "capabilities",
    "service-registry"
  ],
  "license": "Apache-2.0",
  "author": "Neuralchowder Inc. <developer@xema.dev> (https://xema.dev)",
  "homepage": "https://docs.xema.dev/xema-decorators",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/xema-dev/xema-kernel-sdk.git",
    "directory": "packages/sdks/xema-decorators"
  },
  "bugs": "https://github.com/xema-dev/xema-kernel-sdk/issues",
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "peerDependencies": {
    "@nestjs/common": "^10 || ^11",
    "@nestjs/core": "^10 || ^11",
    "@xemahq/platform-common": ">=0.18.0",
    "reflect-metadata": "^0.2",
    "rxjs": "^7.8"
  },
  "devDependencies": {
    "@nestjs/common": "11.1.18",
    "@nestjs/core": "11.1.18",
    "@nestjs/swagger": "11.2.6",
    "@nestjs/testing": "11.1.18",
    "@types/jest": "^30.0.0",
    "@types/node": "25.2.3",
    "@xemahq/contracts": "^0.16.0",
    "@xemahq/platform-common": ">=0.35.0",
    "eslint": "^9.39.4",
    "jest": "^30.3.0",
    "prettier": "3.6.2",
    "reflect-metadata": "0.2.2",
    "rxjs": "7.8.2",
    "ts-jest": "^29.4.9",
    "typescript": "5.9.3",
    "@xemahq/eslint-config": "0.7.0"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "xema-source": "./src/index.ts",
      "default": "./dist/index.js"
    },
    "./dist/lib/*": {
      "types": "./dist/lib/*.d.ts",
      "default": "./dist/lib/*.js"
    }
  },
  "scripts": {
    "clean": "rm -rf dist",
    "build": "tsc -p tsconfig.build.json",
    "format": "prettier --write \"src/**/*.ts\"",
    "lint": "eslint .",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "test": "jest"
  }
}