{
  "name": "@sitecoreai-labs/sitecoreai-cli",
  "version": "0.41.0",
  "description": "SitecoreAI developer toolkit \u2014 a native TypeScript CLI, SDK, and MCP server for deploy, serialization, recipes, publishing, and content operations.",
  "license": "MIT",
  "type": "module",
  "author": "Sitecore Studio Labs (https://github.com/Sitecore-Studio-Labs)",
  "contributors": [
    "Liz Nelson <liz.nelson@sitecore.com>"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Sitecore-Studio-Labs/sitecoreai-cli.git"
  },
  "homepage": "https://github.com/Sitecore-Studio-Labs/sitecoreai-cli",
  "bugs": {
    "url": "https://github.com/Sitecore-Studio-Labs/sitecoreai-cli/issues"
  },
  "bin": {
    "sitecoreai-cli": "bin/sitecoreai-cli",
    "scai": "bin/sitecoreai-cli"
  },
  "exports": {
    "./recipe": {
      "types": "./dist/recipe/index.d.ts",
      "default": "./dist/esm/recipe/index.js"
    },
    "./recipe/unstable": {
      "types": "./dist/recipe/unstable.d.ts",
      "default": "./dist/esm/recipe/unstable.js"
    },
    "./recipe/schema": {
      "types": "./dist/recipe/schema.d.ts",
      "default": "./dist/esm/recipe/schema.js"
    },
    "./deploy": {
      "types": "./dist/deploy/index.d.ts",
      "default": "./dist/esm/deploy/index.js"
    },
    "./sites": {
      "types": "./dist/sites/index.d.ts",
      "default": "./dist/esm/sites/index.js"
    },
    "./serialization": {
      "types": "./dist/serialization/index.d.ts",
      "default": "./dist/esm/serialization/index.js"
    },
    "./sync": {
      "types": "./dist/sync/index.d.ts",
      "default": "./dist/esm/sync/index.js"
    },
    "./hygiene": {
      "types": "./dist/hygiene/index.d.ts",
      "default": "./dist/esm/hygiene/index.js"
    },
    "./errors": {
      "types": "./dist/shared/errors.d.ts",
      "default": "./dist/esm/shared/errors.js"
    },
    "./envelope": {
      "types": "./dist/shared/envelope.d.ts",
      "default": "./dist/esm/shared/envelope.js"
    },
    "./unstable": {
      "types": "./dist/unstable.d.ts",
      "default": "./dist/esm/unstable.js"
    },
    "./unstable/brief/schema": {
      "types": "./dist/brief/recipe/schema-only.d.ts",
      "default": "./dist/esm/brief/recipe/schema-only.js"
    },
    "./unstable/brand/schema": {
      "types": "./dist/brand/recipe/schema-only.d.ts",
      "default": "./dist/esm/brand/recipe/schema-only.js"
    },
    "./unstable/campaigns/schema": {
      "types": "./dist/campaigns/recipe/schema-only.d.ts",
      "default": "./dist/esm/campaigns/recipe/schema-only.js"
    },
    "./unstable/agents/schema": {
      "types": "./dist/agents/recipe/schema-only.d.ts",
      "default": "./dist/esm/agents/recipe/schema-only.js"
    },
    "./package.json": "./package.json"
  },
  "engines": {
    "node": ">=22.12.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "files": [
    "bin",
    "dist",
    "skills",
    "AGENTS.md",
    "README.md",
    "package.json",
    "LICENSE"
  ],
  "scripts": {
    "build": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\" && tsc && tsc-alias && node scripts/fix-declaration-extensions.mjs && node scripts/build-esm.mjs && node -e \"const fs=require('node:fs');fs.mkdirSync('dist/esm/recipe/sandbox',{recursive:true});fs.copyFileSync('src/recipe/sandbox/recipe-runner.cjs','dist/esm/recipe/sandbox/recipe-runner.cjs')\"",
    "changeset": "changeset",
    "clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
    "dev": "tsx -r tsconfig-paths/register src/cli.ts",
    "docs:commands": "tsx scripts/generate-commands-doc.ts",
    "docs:commands:check": "tsx scripts/generate-commands-doc.ts && git diff --exit-code -- docs/commands.md",
    "depcruise:check": "depcruise --config .dependency-cruiser.cjs src",
    "format": "prettier . --write",
    "format:check": "prettier . --check",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "lint:complexity-debt": "eslint src --rule '{\"complexity\":[\"warn\",30],\"max-depth\":[\"warn\",4],\"max-params\":[\"warn\",5]}'",
    "mcpb:pack": "npx -y @anthropic-ai/mcpb@2 validate mcpb/manifest.json && npx -y @anthropic-ai/mcpb@2 pack mcpb scai.mcpb",
    "prepack": "npm run build",
    "prepare": "husky",
    "release": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\" && tsc && tsc-alias && node scripts/fix-declaration-extensions.mjs && node scripts/build-esm.mjs && node -e \"const fs=require('node:fs');fs.mkdirSync('dist/esm/recipe/sandbox',{recursive:true});fs.copyFileSync('src/recipe/sandbox/recipe-runner.cjs','dist/esm/recipe/sandbox/recipe-runner.cjs')\" && changeset publish",
    "sites:codegen": "openapi-typescript src/sites/api/openapi.yaml --output src/sites/api/schema.d.ts",
    "brand:codegen": "openapi-typescript src/brand/api/openapi.brand-management.yaml --output src/brand/api/schema.brand-management.d.ts && openapi-typescript src/brand/api/openapi.brand-review.yaml --output src/brand/api/schema.brand-review.d.ts && openapi-typescript src/brand/api/openapi.documents.yaml --output src/brand/api/schema.documents.d.ts && openapi-typescript src/brand/api/openapi.pipeline.yaml --output src/brand/api/schema.pipeline.d.ts",
    "smoke": "npm run build && node scripts/smoke.cjs && node scripts/smoke-exports.cjs && node scripts/smoke-import.mjs && node scripts/smoke-browser.mjs && node scripts/smoke-mcp.cjs",
    "start": "node dist/cli.js",
    "pretest": "tsc --noEmit",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "test:watch": "vitest",
    "test:integration": "vitest run --config vitest.integration.config.ts",
    "typecheck": "tsc --noEmit",
    "check": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm depcruise:check && pnpm docs:commands:check && pnpm security:scan && pnpm test",
    "security:scan": "node scripts/security-scan.cjs",
    "version": "changeset version && npm install --package-lock-only --ignore-scripts",
    "coverage:ratchet": "node scripts/check-coverage-ratchet.cjs",
    "coverage:ratchet:raise": "RAISE_RATCHET=1 node scripts/check-coverage-ratchet.cjs",
    "build:esm": "node scripts/build-esm.mjs"
  },
  "lint-staged": {
    "*.{ts,tsx,js,cjs,mjs}": [
      "prettier --write",
      "eslint --fix"
    ],
    "*.{json,md,yml,yaml}": [
      "prettier --write"
    ]
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.30.0",
    "@napi-rs/keyring": "^1.3.0",
    "adm-zip": "^0.6.0",
    "ajv": "^8.17.1",
    "ajv-draft-04": "^1.0.0",
    "ajv-formats": "^3.0.1",
    "commander": "^15.0.0",
    "consola": "^3.4.2",
    "dotenv": "^17.2.3",
    "esbuild": "^0.28.1",
    "fast-glob": "^3.3.3",
    "ora": "^9.1.0",
    "tsx": "^4.21.0",
    "yaml": "^2.8.2",
    "zod": "^4.3.6"
  },
  "overrides": {
    "fast-uri": "^3.1.5",
    "picomatch": "^2.3.2",
    "hono": "^4.12.27",
    "esbuild": "^0.28.1",
    "vite": "^7.3.5",
    "js-yaml": "^4.3.0",
    "read-yaml-file": "^2.1.0",
    "brace-expansion": ">=5.0.8",
    "postcss": "^8.5.18",
    "@hono/node-server": "^2.0.5",
    "body-parser": "^2.2.3"
  },
  "pnpm": {
    "overrides": {
      "fast-uri": "^3.1.5",
      "picomatch": "^2.3.2",
      "hono": "^4.12.27",
      "esbuild": "^0.28.1",
      "vite": "^7.3.5",
      "js-yaml": "^4.3.0",
      "read-yaml-file": "^2.1.0",
      "brace-expansion": ">=5.0.8",
      "postcss": "^8.5.18",
      "@hono/node-server": "^2.0.5",
      "body-parser": "^2.2.3"
    }
  },
  "devDependencies": {
    "@changesets/cli": "^2.31.0",
    "@eslint/js": "^10.0.1",
    "@types/adm-zip": "^0.5.7",
    "@types/node": "^26.0.0",
    "@typescript-eslint/eslint-plugin": "^8.61.1",
    "@typescript-eslint/parser": "^8.61.1",
    "@vitest/coverage-v8": "^4.0.18",
    "dependency-cruiser": "^18.0.0",
    "eslint": "^10.5.0",
    "globals": "^17.6.0",
    "husky": "^9.1.7",
    "lint-staged": "^17.0.8",
    "openapi-typescript": "^7.13.0",
    "prettier": "3.9.6",
    "tsc-alias": "^1.8.16",
    "tsconfig-paths": "^4.2.0",
    "typescript": "^5.7.3",
    "vite-tsconfig-paths": "^4.3.2",
    "vitest": "^4.0.18"
  },
  "optionalDependencies": {
    "playwright-core": "^1.60.0"
  }
}
