{
  "name": "@yemaya/studio-desktop",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/yemaya/studio-desktop/src",
  "projectType": "application",
  "tags": ["scope:yemaya", "type:app", "platform:desktop"],
  "targets": {
    "build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/dist"],
      "defaultConfiguration": "production",
      "options": {
        "cwd": "apps/yemaya/studio-desktop",
        "command": "npm run build"
      },
      "configurations": {
        "development": {
          "command": "npm run build"
        },
        "production": {
          "command": "npm run build"
        }
      }
    },
    "serve": {
      "executor": "nx:run-commands",
      "defaultConfiguration": "development",
      "options": {
        "cwd": "apps/yemaya/studio-desktop",
        "command": "npm run dev"
      },
      "configurations": {
        "development": {
          "command": "npm run dev"
        }
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "outputs": ["{workspaceRoot}/coverage/apps/yemaya/studio-desktop"],
      "options": {
        "command": "pnpm exec vitest run --passWithNoTests",
        "cwd": "apps/yemaya/studio-desktop"
      }
    },
    "lint": {
      "executor": "@nx/eslint:lint"
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "command": "tsc --noEmit",
        "cwd": "apps/yemaya/studio-desktop"
      }
    },
    "package": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/out"],
      "options": {
        "cwd": "apps/yemaya/studio-desktop",
        "command": "npm run package"
      }
    },
    "make": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/out"],
      "options": {
        "cwd": "apps/yemaya/studio-desktop",
        "command": "npm run make"
      }
    },
    "publish": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/yemaya/studio-desktop",
        "command": "npm run publish"
      }
    }
  }
}
