{
  "name": "@yemaya/workers",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/yemaya/workers/src",
  "projectType": "application",
  "tags": ["scope:yemaya", "type:app", "platform:server"],
  "targets": {
    "build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/dist"],
      "options": {
        "cwd": "apps/yemaya/workers",
        "command": "tsup"
      }
    },
    "serve": {
      "executor": "nx:run-commands",
      "defaultConfiguration": "development",
      "options": {
        "cwd": "apps/yemaya/workers",
        "command": "tsx watch src/index.ts"
      },
      "configurations": {
        "development": {
          "command": "tsx watch src/index.ts"
        },
        "production": {
          "command": "node dist/index.js"
        }
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "outputs": ["{workspaceRoot}/coverage/apps/yemaya/workers"],
      "options": {
        "command": "pnpm exec vitest run --passWithNoTests",
        "cwd": "apps/yemaya/workers"
      }
    },
    "lint": {
      "executor": "@nx/eslint:lint"
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "command": "tsc --noEmit",
        "cwd": "apps/yemaya/workers"
      }
    },
    "docker-build": {
      "executor": "nx:run-commands",
      "options": {
        "command": "docker build -t yemaya-workers:latest -f Dockerfile .",
        "cwd": "apps/yemaya/workers"
      }
    }
  }
}
