{
  "name": "@bellona/new-command",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "tools/bellona/new-command/src",
  "projectType": "library",
  "tags": ["scope:bellona", "scope:tools", "type:lib"],
  "targets": {
    "build": {
      "executor": "nx:run-commands",
      "options": {
        "command": "tsc",
        "cwd": "tools/bellona/new-command"
      },
      "outputs": ["{projectRoot}/dist"]
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "command": "tsc --noEmit -p tsconfig.spec.json",
        "cwd": "tools/bellona/new-command"
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "command": "vitest run",
        "cwd": "tools/bellona/new-command"
      }
    },
    "lint": {
      "executor": "@nx/eslint:lint",
      "options": {
        "lintFilePatterns": ["tools/bellona/new-command/src/**/*.ts"]
      }
    },
    "conformance": {
      "executor": "nx:run-commands",
      "options": {
        "command": "tsx src/cli.ts conformance",
        "cwd": "tools/bellona/new-command"
      }
    }
  }
}
