{
  "name": "@outputai/cli",
  "version": "0.13.0",
  "description": "CLI for Output.ai workflow generation",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "engines": {
    "node": ">=24.15.0"
  },
  "files": [
    "./bin",
    "./dist",
    "./oclif.manifest.json"
  ],
  "bin": {
    "output": "./bin/run.js"
  },
  "dependencies": {
    "@anthropic-ai/claude-agent-sdk": "0.2.92",
    "@hackylabs/deep-redact": "3.0.5",
    "@inquirer/prompts": "8.4.2",
    "@oclif/core": "4.10.6",
    "@oclif/plugin-help": "6.2.45",
    "change-case": "5.4.4",
    "cli-progress": "3.12.0",
    "cli-table3": "0.6.5",
    "date-fns": "4.1.0",
    "debug": "4.4.3",
    "handlebars": "4.7.9",
    "ink": "7.0.1",
    "ink-spinner": "5.0.0",
    "js-yaml": "4.3.2",
    "json-schema-library": "11.4.0",
    "ky": "2.0.2",
    "react": "19.2.5",
    "semver": "7.7.4",
    "undici": "8.9.0",
    "@outputai/credentials": "0.13.0",
    "@outputai/llm": "0.13.0",
    "@outputai/evals": "0.13.0"
  },
  "devDependencies": {
    "@types/cli-progress": "3.11.6",
    "@types/debug": "4.1.13",
    "@types/js-yaml": "4.0.9",
    "@types/react": "19.2.14",
    "@types/semver": "7.7.1",
    "oclif": "4.23.10",
    "orval": "8.24.0"
  },
  "license": "Apache-2.0",
  "publishConfig": {
    "access": "public"
  },
  "imports": {
    "#*": "./dist/*"
  },
  "oclif": {
    "bin": "output",
    "dirname": "output",
    "commands": "./dist/commands",
    "hooks": {
      "init": "./dist/hooks/init"
    },
    "plugins": [
      "@oclif/plugin-help"
    ],
    "additionalHelpFlags": [
      "-h"
    ],
    "additionalVersionFlags": [
      "-v"
    ],
    "topicSeparator": " ",
    "topics": {
      "workflow": {
        "description": "Manage Output.ai workflows"
      },
      "credentials": {
        "description": "Manage encrypted credentials"
      }
    }
  },
  "scripts": {
    "build": "rm -rf ./dist && tsc && npm run copy-assets && oclif manifest",
    "copy-assets": "./bin/copyassets.sh",
    "test": "vitest run",
    "generate:api": "orval --config ./orval.config.ts",
    "set-sdk-version": "./scripts/set_sdk_version.js",
    "prebuild": "npm run generate:api"
  }
}