{
  "name": "@lilith/desktop",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/lilith/desktop/src",
  "projectType": "application",
  "tags": ["scope:lilith", "type:app", "platform:desktop"],
  "targets": {
    "dev": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/lilith/desktop",
        "command": "tauri dev"
      }
    },
    "build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/src-tauri/target/release", "{projectRoot}/dist"],
      "options": {
        "cwd": "apps/lilith/desktop",
        "command": "tauri build"
      },
      "configurations": {
        "debug": {
          "command": "tauri build --debug"
        }
      }
    },
    "build:web": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/dist"],
      "options": {
        "cwd": "apps/lilith/desktop",
        "command": "tsc && vite build"
      }
    },
    "preview": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/lilith/desktop",
        "command": "vite preview"
      }
    },
    "lint": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/lilith/desktop",
        "command": "eslint src"
      }
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/lilith/desktop",
        "command": "tsc --noEmit"
      }
    },
    "cargo:build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/src-tauri/target"],
      "options": {
        "cwd": "apps/lilith/desktop/src-tauri",
        "command": "cargo build --release"
      }
    },
    "cargo:check": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/lilith/desktop/src-tauri",
        "command": "cargo check"
      }
    },
    "cargo:clippy": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/lilith/desktop/src-tauri",
        "command": "cargo clippy"
      }
    }
  }
}
