{
  "name": "workos",
  "version": "0.17.1",
  "type": "module",
  "description": "The Official Workos CLI",
  "repository": {
    "type": "git",
    "url": "https://github.com/workos/cli"
  },
  "keywords": [
    "workos",
    "authkit",
    "authentication",
    "wizard",
    "cli",
    "setup",
    "install",
    "oauth",
    "sso"
  ],
  "bin": {
    "workos": "dist/bin.js"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "package.json",
    "README.md"
  ],
  "main": "dist/index.js",
  "typings": "dist/index.d.ts",
  "typescript": {
    "definition": "dist/index.d.ts"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./emulate": {
      "import": "./dist/emulate/index.js",
      "types": "./dist/emulate/index.d.ts"
    }
  },
  "dependencies": {
    "@anthropic-ai/claude-agent-sdk": "~0.2.62",
    "@anthropic-ai/sdk": "^0.78.0",
    "@clack/core": "^1.0.1",
    "@clack/prompts": "1.0.1",
    "@hono/node-server": "^1",
    "@napi-rs/keyring": "^1.2.0",
    "@workos-inc/node": "^8.7.0",
    "@workos/migrations": "^2.0.0",
    "@workos/openapi-spec": "^0.1.0",
    "@workos/skills": "0.6.1",
    "chalk": "^5.6.2",
    "diff": "^8.0.3",
    "fast-glob": "^3.3.3",
    "hono": "^4",
    "ink": "^6.8.0",
    "open": "^11.0.0",
    "react": "^19.2.4",
    "semver": "^7.7.4",
    "uuid": "^13.0.0",
    "xstate": "^5.28.0",
    "yaml": "^2.8.2",
    "yargs": "^18.0.0",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@statelyai/inspect": "^0.4.0",
    "@types/node": "~22.19.7",
    "@types/opn": "5.1.0",
    "@types/react": "^19.2.14",
    "@types/semver": "^7.7.1",
    "@types/yargs": "^17.0.35",
    "@vitest/coverage-v8": "^4.0.18",
    "@vitest/ui": "^4.0.18",
    "dotenv": "^17.3.1",
    "oxfmt": "^0.35.0",
    "oxlint": "^1.50.0",
    "p-limit": "^7.3.0",
    "tsx": "^4.20.3",
    "typescript": "^5.9.3",
    "vitest": "^4.0.18"
  },
  "engines": {
    "node": ">=22.11"
  },
  "author": "WorkOS",
  "license": "MIT",
  "scripts": {
    "clean": "rm -rf ./dist",
    "prebuild": "pnpm clean",
    "build:watch": "pnpm tsc -w",
    "build": "pnpm tsc",
    "postbuild": "chmod +x ./dist/bin.js && cp -r scripts/** dist",
    "lint": "oxlint",
    "format": "oxfmt .",
    "format:check": "oxfmt --check .",
    "try": "tsx dev.ts",
    "dev": "pnpm build && pnpm link --global && pnpm build:watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc --noEmit",
    "eval": "tsx tests/evals/index.ts",
    "eval:history": "tsx tests/evals/index.ts history",
    "eval:diff": "tsx tests/evals/index.ts diff",
    "eval:prune": "tsx tests/evals/index.ts prune",
    "eval:logs": "tsx tests/evals/index.ts logs",
    "eval:show": "tsx tests/evals/index.ts show",
    "gen:routes": "tsx scripts/gen-routes.ts",
    "check:coverage": "tsx scripts/check-coverage.ts"
  }
}