{
  "name": "@storyblok/react",
  "type": "module",
  "version": "7.2.4",
  "private": false,
  "description": "SDK to integrate Storyblok into your project using React.",
  "author": "Storyblok",
  "license": "MIT",
  "homepage": "https://github.com/storyblok/monoblok/tree/main/packages/react#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/storyblok/monoblok.git",
    "directory": "packages/react"
  },
  "bugs": {
    "url": "https://github.com/storyblok/monoblok/issues"
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./ssr": {
      "import": {
        "types": "./dist/ssr.d.ts",
        "default": "./dist/ssr.mjs"
      },
      "require": {
        "types": "./dist/ssr.d.cts",
        "default": "./dist/ssr.cjs"
      }
    },
    "./rsc": {
      "import": {
        "types": "./dist/rsc.d.ts",
        "default": "./dist/rsc.mjs"
      },
      "require": {
        "types": "./dist/rsc.d.cts",
        "default": "./dist/rsc.cjs"
      }
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "peerDependencies": {
    "next": "^13 || ^14 || ^15 || ^16",
    "react": "^17 || ^18 || ^19",
    "react-dom": "^17 || ^18 || ^19"
  },
  "peerDependenciesMeta": {
    "next": {
      "optional": true
    }
  },
  "dependencies": {
    "@storyblok/js": "6.3.1",
    "@storyblok/richtext": "5.2.1"
  },
  "devDependencies": {
    "@babel/core": "^7.27.1",
    "@babel/preset-env": "^7.27.2",
    "@cypress/react": "^9.0.1",
    "@cypress/vite-dev-server": "^6.0.3",
    "@testing-library/jest-dom": "^6.6.3",
    "@testing-library/react": "^16.3.0",
    "@tsconfig/recommended": "^1.0.8",
    "@types/node": "^24.11.0",
    "@types/react": "19.2.3",
    "@vitejs/plugin-react": "^4.4.1",
    "babel-jest": "^29.7.0",
    "cypress": "^14.3.3",
    "eslint": "^9.26.0",
    "eslint-plugin-cypress": "^4.3.0",
    "eslint-plugin-jest": "^28.11.0",
    "jsdom": "^26.1.0",
    "publint": "^0.3.22",
    "react": "^19.1.0",
    "react-dom": "^19.1.0",
    "rollup-plugin-preserve-directives": "^0.4.0",
    "start-server-and-test": "^2.0.11",
    "typescript": "5.8.3",
    "vite": "^6.4.3",
    "vite-plugin-dts": "^4.5.3",
    "vitest": "^3.1.3",
    "@storyblok/eslint-config": "0.6.0"
  },
  "babel": {
    "presets": [
      [
        "@babel/preset-env",
        {
          "targets": {
            "node": "current"
          }
        }
      ]
    ]
  },
  "release": {
    "branches": [
      "main"
    ]
  },
  "publishConfig": {
    "access": "public"
  },
  "nx": {
    "implicitDependencies": [
      "!@storyblok/playground-*"
    ]
  },
  "scripts": {
    "dev": "vite build --watch",
    "build": "vite build",
    "test:types": "tsc --noEmit --skipLibCheck",
    "test": "pnpm run test:unit && pnpm run test:e2e-next-13 && pnpm run test:e2e-next-latest",
    "test:unit": "vitest run",
    "test:unit:ui": "vitest --ui",
    "test:e2e-next-13": "start-server-and-test playground:next-13 http://localhost:3000/ cy:run",
    "test:e2e-next-latest": "start-server-and-test playground:next-latest http://localhost:3000/ cy:run",
    "test:e2e-watch": "start-server-and-test playground:next-latest http-get://localhost:3000/ cy:open",
    "cy:run": "cypress run",
    "cy:open": "cypress open",
    "test:comp": "cypress run --component",
    "playground": "pnpm run --filter ./playground/react dev",
    "playground:next-latest": "pnpm run --filter ./playground/next-latest dev",
    "playground:next-13": "pnpm run --filter ./playground/next-13-app-router dev",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "publint": "publint ."
  }
}