{
  "name": "@isis/comfyui-nodes",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "libs/isis/comfyui-nodes/src",
  "projectType": "library",
  "tags": ["scope:isis", "layer:domain", "lang:python"],
  "targets": {
    "lint": {
      "executor": "nx:run-commands",
      "options": {
        "command": "ruff check libs/isis/comfyui-nodes/src",
        "cwd": "{workspaceRoot}"
      }
    },
    "format": {
      "executor": "nx:run-commands",
      "options": {
        "command": "ruff format libs/isis/comfyui-nodes/src",
        "cwd": "{workspaceRoot}"
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "command": "pytest libs/isis/comfyui-nodes/tests",
        "cwd": "{workspaceRoot}"
      }
    },
    "build": {
      "executor": "nx:run-commands",
      "options": {
        "command": "python3 -m build libs/isis/comfyui-nodes",
        "cwd": "{workspaceRoot}"
      },
      "outputs": ["{projectRoot}/dist"]
    },
    "install-dev": {
      "executor": "nx:run-commands",
      "options": {
        "command": "pip install -e libs/isis/comfyui-nodes",
        "cwd": "{workspaceRoot}"
      }
    },
    "install-comfyui": {
      "executor": "nx:run-commands",
      "options": {
        "command": "tsx libs/isis/comfyui-nodes/scripts/install-to-comfyui.ts",
        "cwd": "{workspaceRoot}"
      }
    }
  }
}
