{
  "name": "@iris/wearable-shared",
  "$schema": "../../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/iris/wearable/shared/src",
  "projectType": "library",
  "tags": ["scope:iris", "layer:domain", "type:lib"],
  "targets": {
    "build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/dist"],
      "options": {
        "cwd": "apps/iris/wearable/shared",
        "command": "tsup src/index.ts --format esm,cjs --dts"
      }
    },
    "lint": {
      "executor": "@nx/eslint:lint",
      "outputs": ["{options.outputFile}"],
      "options": {
        "lintFilePatterns": ["apps/iris/wearable/shared/src/**/*.ts"]
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/iris/wearable/shared",
        "command": "vitest run"
      }
    }
  }
}
