{
  "name": "@oshun/v10-rail-cli",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/v10/rail-cli/src",
  "projectType": "application",
  "tags": ["scope:v10", "type:app", "platform:node"],
  "targets": {
    "dogfood-report": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/v10/rail-cli",
        "command": "tsx src/cli.ts dogfood-report"
      }
    },
    "build": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/v10/rail-cli",
        "command": "tsc --noEmit -p tsconfig.json"
      }
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/v10/rail-cli",
        "command": "tsc --noEmit -p tsconfig.json"
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/v10/rail-cli",
        "command": "vitest run --config vitest.config.ts"
      }
    },
    "lint": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/v10/rail-cli",
        "command": "eslint --no-warn-ignored src vitest.config.ts"
      }
    }
  }
}
