{
  "name": "@storyblok/react",
  "type": "module",
  "version": "6.1.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": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./ssr": {
      "types": "./dist/ssr.d.ts",
      "import": "./dist/ssr.mjs",
      "require": "./dist/ssr.js"
    },
    "./rsc": {
      "types": "./dist/rsc.d.ts",
      "import": "./dist/rsc.mjs",
      "require": "./dist/rsc.js"
    }
  },
  "main": "./dist/index.js",
  "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": "5.1.3"
  },
  "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.1.4",
    "@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",
    "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.3.5",
    "vite-plugin-dts": "^4.5.3",
    "vitest": "^3.1.3",
    "@storyblok/eslint-config": "0.5.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"
  }
}