{
  "$schema": "http://json-schema.org/schema",
  "executors": {
    "build": {
      "implementation": "./dist/executors/build/executor",
      "schema": "./dist/executors/build/schema.json",
      "description": "build executor"
    },
    "publish": {
      "implementation": "./dist/executors/publish/executor",
      "schema": "./dist/executors/publish/schema.json",
      "description": "publish executor"
    },
    "add": {
      "implementation": "./dist/executors/add/executor",
      "schema": "./dist/executors/add/schema.json",
      "description": "Add a dependency to the project"
    },
    "flake8": {
      "implementation": "./dist/executors/flake8/executor",
      "schema": "./dist/executors/flake8/schema.json",
      "description": "Flake8 Linting Executor"
    },
    "tox": {
      "implementation": "./dist/executors/tox/executor",
      "schema": "./dist/executors/tox/schema.json",
      "description": "Nx Python Tox Executor"
    },
    "install": {
      "implementation": "./dist/executors/install/executor",
      "schema": "./dist/executors/install/schema.json",
      "description": "Nx Python Poetry Install"
    },
    "update": {
      "implementation": "./dist/executors/update/executor",
      "schema": "./dist/executors/update/schema.json",
      "description": "Poetry Update Wrapper Executor"
    },
    "remove": {
      "implementation": "./dist/executors/remove/executor",
      "schema": "./dist/executors/remove/schema.json",
      "description": "Poetry Remove Wrapper Executor"
    },
    "sls-deploy": {
      "implementation": "./dist/executors/sls-deploy/executor",
      "schema": "./dist/executors/sls-deploy/schema.json",
      "description": "Serverless Deploy Wrapper Executor"
    },
    "sls-package": {
      "implementation": "./dist/executors/sls-package/executor",
      "schema": "./dist/executors/sls-package/schema.json",
      "description": "Serverless Package Wrapper Executor"
    },
    "run-commands": {
      "implementation": "./dist/executors/run-commands/executor",
      "schema": "./dist/executors/run-commands/schema.json",
      "description": "Python Venv Run Commands Executor"
    },
    "ruff-check": {
      "implementation": "./dist/executors/ruff-check/executor",
      "schema": "./dist/executors/ruff-check/schema.json",
      "description": "Ruff Check Executor"
    },
    "ruff-format": {
      "implementation": "./dist/executors/ruff-format/executor",
      "schema": "./dist/executors/ruff-format/schema.json",
      "description": "Ruff Format Executor"
    },
    "sync": {
      "implementation": "./dist/executors/sync/executor",
      "schema": "./dist/executors/sync/schema.json",
      "description": "Sync Dependencies Executor"
    },
    "lock": {
      "implementation": "./dist/executors/lock/executor",
      "schema": "./dist/executors/lock/schema.json",
      "description": "Lock Dependencies Executor"
    },
    "package-dependencies": {
      "implementation": "./dist/executors/package-dependencies/executor",
      "schema": "./dist/executors/package-dependencies/schema.json",
      "description": "Package the dependencies for a project"
    },
    "package-project": {
      "implementation": "./dist/executors/package-project/executor",
      "schema": "./dist/executors/package-project/schema.json",
      "description": "Package the project for a project"
    }
  }
}
