{
  "name": "v3-lilith-realtime-gateway",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/v3/lilith-realtime-gateway/src",
  "projectType": "application",
  "tags": ["scope:v3", "layer:service", "type:rust-app"],
  "implicitDependencies": ["@oshun/multiplayer-protocol"],
  "targets": {
    "build": {
      "executor": "nx:run-commands",
      "cache": true,
      "options": {
        "command": "cargo build --manifest-path apps/v3/Cargo.toml -p lilith-realtime-gateway"
      },
      "inputs": ["v3Production", "^v3Production"],
      "dependsOn": ["^build"]
    },
    "lint": {
      "executor": "nx:run-commands",
      "cache": true,
      "options": {
        "command": "cargo fmt --manifest-path apps/v3/Cargo.toml --all -- --check"
      },
      "inputs": [
        "v3Production",
        "{workspaceRoot}/eslint.config.js",
        "{workspaceRoot}/.eslintrc.json"
      ]
    },
    "test": {
      "executor": "nx:run-commands",
      "cache": true,
      "options": {
        "command": "cargo test --manifest-path apps/v3/Cargo.toml -p lilith-realtime-gateway"
      },
      "inputs": ["v3Test", "^v3Production"]
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "cache": true,
      "options": {
        "command": "cargo check --manifest-path apps/v3/Cargo.toml -p lilith-realtime-gateway"
      },
      "inputs": ["v3Production", "^v3Production"]
    }
  }
}
