{
  "name": "@hathor/workbench",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/hathor/workbench/src",
  "projectType": "application",
  "tags": ["scope:hathor", "type:app", "platform:web"],
  "targets": {
    "build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/dist"],
      "options": {
        "cwd": "apps/hathor/workbench",
        "command": "vite build"
      },
      "configurations": {
        "production": {
          "command": "vite build --mode production"
        },
        "development": {
          "command": "vite build --mode development"
        }
      }
    },
    "dev": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/hathor/workbench",
        "command": "vite"
      }
    },
    "preview": {
      "executor": "nx:run-commands",
      "dependsOn": ["build"],
      "options": {
        "cwd": "apps/hathor/workbench",
        "command": "vite preview"
      }
    },
    "test": {
      "executor": "@nx/vite:test",
      "options": {
        "config": "apps/hathor/workbench/vitest.config.ts"
      }
    },
    "lint": {
      "executor": "@nx/eslint:lint",
      "outputs": ["{options.outputFile}"]
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/hathor/workbench",
        "command": "tsc --noEmit"
      }
    }
  }
}
