{
  "name": "@se-studio/contentful-cms",
  "version": "3.2.0",
  "description": "CLI tool for AI agents to read and edit Contentful draft content without publish permissions",
  "repository": {
    "type": "git",
    "url": "https://github.com/Something-Else-Studio/se-core-product",
    "directory": "packages/contentful-cms"
  },
  "license": "MIT",
  "engines": {
    "node": ">=24.0.0 <25"
  },
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./hosted": {
      "types": "./dist/hosted/index.d.ts",
      "import": "./dist/hosted/index.js"
    },
    "./hosted/next/*": {
      "types": "./dist/hosted/next/*.d.ts",
      "import": "./dist/hosted/next/*.js"
    }
  },
  "peerDependencies": {
    "@upstash/redis": ">=1.38.0",
    "next": ">=15.0.0 <16",
    "react": ">=19.0.0",
    "react-dom": ">=19.0.0"
  },
  "peerDependenciesMeta": {
    "@upstash/redis": {
      "optional": false
    },
    "next": {
      "optional": true
    },
    "react": {
      "optional": true
    },
    "react-dom": {
      "optional": true
    }
  },
  "bin": {
    "cms-edit": "./dist/bin/cms-edit.js"
  },
  "files": [
    "dist",
    "docs/editor-tasks",
    "docs/help",
    "docs/mcp",
    "skills",
    "*.md"
  ],
  "dependencies": {
    "@contentful/rich-text-types": "^17.2.7",
    "@modelcontextprotocol/sdk": "^1.29.0",
    "commander": "^15.0.0",
    "contentful": "^11.12.7",
    "contentful-management": "^12.8.0",
    "dotenv": "^17.4.2",
    "jose": "^6.2.4",
    "picocolors": "^1.1.1",
    "zod": "^4.4.3"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.5.5",
    "@types/node": "^24.13.3",
    "@types/react": "^19.2.17",
    "@types/react-dom": "^19.2.3",
    "@upstash/redis": "^1.38.0",
    "next": "^15.5.21",
    "react": "^19.2.8",
    "react-dom": "^19.2.8",
    "typescript": "^6.0.3",
    "vitest": "^4.1.10"
  },
  "keywords": [
    "contentful",
    "cms",
    "cli",
    "ai-agent",
    "content-management",
    "typescript"
  ],
  "homepage": "https://github.com/Something-Else-Studio/se-core-product#readme",
  "bugs": {
    "url": "https://github.com/Something-Else-Studio/se-core-product/issues"
  },
  "scripts": {
    "generate:embeds": "node scripts/generate-embedded-assets.mjs",
    "sync:skills": "node scripts/sync-cms-edit-skills.mjs",
    "build": "node scripts/generate-embedded-assets.mjs && node scripts/sync-cms-edit-skills.mjs && tsc --project tsconfig.build.json",
    "dev": "node scripts/generate-embedded-assets.mjs && node scripts/sync-cms-edit-skills.mjs && tsc --project tsconfig.build.json --watch",
    "type-check": "node scripts/generate-embedded-assets.mjs && tsc --noEmit",
    "lint": "biome lint .",
    "clean": "rm -rf dist src/generated .turbo *.tsbuildinfo",
    "test": "node scripts/generate-embedded-assets.mjs && node scripts/sync-cms-edit-skills.mjs && vitest run"
  }
}