{
  "$schema": "http://json-schema.org/schema",
  "$id": "DenoPreset",
  "title": "Standalone Deno preset",
  "description": "Create a Deno project in a standalone Nx Workspace.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the workspace. Used as the app name when for standalone projects.",
      "$default": {
        "$source": "argv",
        "index": 0
      },
      "x-priority": "important"
    }
  },
  "required": ["name"]
}
