{
  "name": "@maat/agent-console",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/maat/agent-console/src",
  "projectType": "application",
  "tags": ["scope:maat", "type:app", "platform:web"],
  "targets": {
    "dev": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/maat/agent-console",
        "command": "next dev -p 3058"
      }
    },
    "build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/.next"],
      "options": {
        "cwd": "apps/maat/agent-console",
        "command": "next build --webpack"
      }
    },
    "lint": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/maat/agent-console",
        "command": "npx eslint src"
      }
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/maat/agent-console",
        "command": "tsc --noEmit"
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/maat/agent-console",
        "command": "vitest run --passWithNoTests"
      }
    }
  }
}
