{
  "name": "psyche-tracing",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "libs/psyche/tracing/src",
  "projectType": "library",
  "tags": ["scope:psyche", "type:lib", "lang:python"],
  "targets": {
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "command": "cd libs/psyche/tracing && python -m pytest tests/ -v",
        "cwd": "{workspaceRoot}"
      }
    },
    "lint": {
      "executor": "nx:run-commands",
      "options": {
        "command": "cd libs/psyche/tracing && python -m ruff check src/",
        "cwd": "{workspaceRoot}"
      }
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "command": "true # python typecheck skipped (mypy/poetry not installed)",
        "cwd": "{workspaceRoot}"
      }
    }
  }
}
