{
  "name": "@athena/packaging",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "libs/athena/packaging/src",
  "projectType": "library",
  "tags": ["scope:athena", "type:feature"],
  "implicitDependencies": ["@athena/core"],
  "targets": {
    "build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/dist"],
      "options": {
        "command": "tsc -p tsconfig.build.json",
        "cwd": "libs/athena/packaging"
      }
    },
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "command": "npx vitest run",
        "cwd": "libs/athena/packaging"
      }
    },
    "lint": {
      "executor": "nx:run-commands",
      "options": {
        "command": "eslint src/ --max-warnings 0 --no-warn-ignored",
        "cwd": "libs/athena/packaging"
      }
    }
  }
}
